I need it for my firefox extension. I don\'t care about waiting the page load completely, I want only observe URL and get an event every time it changes, also when I do history back and forward.
After a whole day figuring out how to write something from my browser to a local text file.. Im thinking of something like for example a Firefox extension that has a log file.
the javascript file contains this code: function getSelected(win) { sel = win.getSelection(); alert(sel);
This is the code that I have in javascript file inside my addon: function ShotText() { var inputString = \"שלום\"; //Hebrew letters
I\'m using the nsIObserverService 开发者_如何学Cto monitor the responses, but it fires events for all tabs (browser in Mozilla terminology). I\'d like to know which browser is getting the response in
Is it possible to activa开发者_JS百科te or deactivate firefox addons via command line or config file?Apart from -safe-mode, no: http://kb.mozillazine.org/Command_line_arguments, https://developer.mozi
I\'m trying to debug my开发者_Go百科 form POST code. Is there any firefox plugin so I can see exactly what the browser is sending (rather than monitor at the server side)?Firebug? It lets you see HTTP
I develop a firefox extension for configuration printer automatically. I want to create a configuration file at where extension was installed. can 开发者_JAVA百科anybody help me?You do not actually wa
I\'m trying to parse a bit.ly JSON response in javascript. I get the JSON via XmlHttpRequest. var req = new XMLHttpRequest;
How to call a Javascript function declared in my extension, using a html button from my web page? I have a html page, with a button inside. When the user click the butto开发者_StackOverflown, it wil