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

Say, just after user's click on link Firefox starts to load http://example.com/test.htm. Such meta-plug-in have to hook this event and to start loading "specific page" http://127.0.0.1/?address=http://example.com/test.htm into html frame in side bar.

The specific page http://127.0.0.1/?address=http://example.com/test.htm may be served by server daemon, that may do a lot of very useful things, like digging into local and remote databases and presenting result (that relates to example.com/test.htm) to Firefox user.

Why, you ask, not no implement daemon's functionality in a Firefox plug-in itself? Because:

  1. The plug-in author is limited in its programming language (afaik xul+js only), but daemon author is not. (So, such a meta-plug-in permits extension authors to be language agnostic.)

  2. The plug-in author is limited in persistence/parallelism — it may be much easier to write a daemon that run in parallel with Firefox, may be even at remote host.

Thats why I ask for such a meta-plug-in — because it permits to write specific plug-ins more easily.

Definitely, there is some documentation on writing such a plug-in, say https://developer.mozilla.org/en-US/docs/Code_snippets/On_page_load or Monitoring page load event in selected tab from firefox sidebar; still I can not find the full plug-in, not the code snippets.

Some additional functionality may include: loading specific page into sidebar html frame at end of main page load; adding of x-some-header-info into query string of specific page; setting another address instead of 127.0.0.1 and so on — but I am asking for COMPLETE plug-in with at least BASIC FUNCTIONALITY.

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.