Your extension creates several menu items for its dial.html page that uses browser.tabs.executeScript to interact with your implementation from dial.js.
The use of tabs.executeScript was deprecated since Firefox 149 (https://bugzilla.mozilla.org/show_bug.cgi?id=2011234) and will become unavailable in Firefox 152, after which these context menus will cease to work. I recommend switching to tabs.sendMessage as an alternative.
Your extension creates several menu items for its dial.html page that uses
browser.tabs.executeScriptto interact with your implementation from dial.js.The use of
tabs.executeScriptwas deprecated since Firefox 149 (https://bugzilla.mozilla.org/show_bug.cgi?id=2011234) and will become unavailable in Firefox 152, after which these context menus will cease to work. I recommend switching totabs.sendMessageas an alternative.