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:
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.)
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.