Accessing every document that a user currently vie

2019-09-04 17:08发布

I'm writing an extension that checks every document a user views on certain data structures, does some back-end server calls and displays the results as a dialog.The problem is starting and continuing the sequence properly with event listeners. My actual idea is:

Load: function()
{
var Listener = function(){ Fabogore.Start();};
var ListenerTab = window.gBrowser.selectedTab;
ListenerTab.addEventListener("load",Listener,true);
}
(...)
ListenerTab.removeEventListener("load", Listener, true);
Fabogore.Load();

The Fabogore.Load function is first initialized when the browser gets opened. It works only once I get these data structures, but not afterwards. But theoretically the script should initialize a new listener, so maybe it's the selectedTab. I also tried listening to focus events.

If someone has got an alternative solution how to access a page a user is currently viewing I would feel comfortable as well.

2条回答
SAY GOODBYE
2楼-- · 2019-09-04 17:19

Ok, I found a way which works from the MDN documentation, and achieves that every document a user opens can be accessed by your extension. Accessing every document a user focuses is too much, I want the code to be executed only once. So I start with initializing the Exentsion, and Listen to DOMcontentloaded Event

window.addEventListener("load", function() { Fabogore.init(); }, false);


var Fabogore = {
init: function() {
var appcontent = document.getElementById("appcontent");   // browser
if(appcontent)
  appcontent.addEventListener("DOMContentLoaded", Fabogore.onPageLoad, true);
},

This executes the code every Time a page is loaded. Now what's important is, that you execute your code with the new loaded page, and not with the old one. You can acces this one with the variable aEvent:

onPageLoad: function(aEvent)
{
var doc = aEvent.originalTarget;//Document which initiated the event

With the variable "doc" you can check data structures using XPCNativeWrapper etc. Thanks Wladimir for bringing me in the right direction, I suppose if you need a more sophisticated event listening choose his way with the progress listeners.

查看更多
Deceive 欺骗
3楼-- · 2019-09-04 17:36

The common approach is using a progress listener. If I understand correctly, you want to get a notification whenever a browser tab finished loading. So the important method in your progress listener would be onStateChange (it needs to have all the other methods as well however):

onStateChange: function(aWebProgress, aRequest, aFlag, aStatus)
{
  if ((aFlag & Components.interfaces.nsIWebProgressListener.STATE_STOP) &&
      (aFlag & Components.interfaces.nsIWebProgressListener.STATE_IS_WINDOW) &&
      aWebProgress.DOMWindow == aWebProgress.DOMWindow.top)
  {
    // A window finished loading and it is the top-level frame in its tab
    Fabogore.Start(aWebProgress.DOMWindow);
  }
},
查看更多
登录 后发表回答