I'm using a firefox add-on that can be activated with a keycode combination - In this case Alt+W
The addon is here: https://addons.mozilla.org/en-US/firefox/addon/closen-forget/?src=search
I want to activate it via JavaScript and am attempting with the following:
evt=document.createEvent("KeyboardEvent");
evt.initKeyEvent("keydown",true,true,window,0,True,0,0,evt.DOM_VK_W,0);
body.dispatchEvent(evt);
(By passing it through the URL).
The key is logged successfully in the console but is not triggering the add-on.
I'm sure this is a security issue to prevent websites from triggering your Firefox add-on, but is there a way to get around this to trigger my own add-on via script? Perhaps a way to communicate (api) with between Firefox add-ons directly?