firefox extension: how do i write/update the side bar from firefox extension?
Summary To update or dynamically write messages from a Firefox extension onto the sidebar, you need to use the WebExtensions API, specifically the browser.sidebarAction or browser.action APIs, in combination with HTML and JavaScript. The key takeaway is that you must declare the necessary permissions in your extension’s manifest.json file and use the correct API methods … Read more