Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.