I'm trying to write firefox extension which will run when a (specific) page is loaded (it will be same key words replace).
I write code like:
window.addEventListener("load", function() maApp.init(); }, false);
var maApp= {
init: function() {
var appcontent = document.getElementById("appcontent"); // browser
if(appcontent)
appcontent.addEventListener("DOMContentLoaded", maApp.onPageLoad, true);
var messagepane = document.getElementById("messagepane"); // mail
if(messagepane)
messagepane.addEventListener("load", function(event) { maApp.onPageLoad(event); }, true);
},
onPageLoad: function() {
alert("test);
doSomething();
}
};
But onPageLoad is never run... no alert... Can somebody please tell me what I'm doing wrong?
I'm trying to write firefox extension which will run when a (specific) page is loaded (it will be same key words replace).
I write code like:
window.addEventListener("load", function() maApp.init(); }, false);
var maApp= {
init: function() {
var appcontent = document.getElementById("appcontent"); // browser
if(appcontent)
appcontent.addEventListener("DOMContentLoaded", maApp.onPageLoad, true);
var messagepane = document.getElementById("messagepane"); // mail
if(messagepane)
messagepane.addEventListener("load", function(event) { maApp.onPageLoad(event); }, true);
},
onPageLoad: function() {
alert("test);
doSomething();
}
};
But onPageLoad is never run... no alert... Can somebody please tell me what I'm doing wrong?
Share Improve this question edited Jul 13, 2019 at 16:27 Brian Tompsett - 汤莱恩 5,89372 gold badges61 silver badges133 bronze badges asked Jun 24, 2011 at 12:29 PsychoXPsychoX 1,0984 gold badges24 silver badges44 bronze badges 4- 1 You missed a brace in the first line ... – YeJiabin Commented Jun 24, 2011 at 12:36
- or simply pass the function directly: maApp.init – Karoly Horvath Commented Jun 24, 2011 at 12:38
-
What's the context of this, a Firefox/Thunderbird overlay? Thunderbird has
<browser id="messagepane">
but in Firefoxappcontent
isn't a browser but rather its container. Events from content frames don't bubble up so you have to attach listeners to the browser directly (document.getElementById("content")
). – Wladimir Palant Commented Jun 24, 2011 at 12:48 - This is for firefox. I menaged to fix my problem. It was a brace in first line as YeJiabin told. – PsychoX Commented Jun 24, 2011 at 13:14
2 Answers
Reset to default 5First some words on getting the browser element. In Firefox this element has ID content
, not appcontent
. Still, the remended way of getting it is the window.gBrowser
variable. In Thunderbird 5 the ID of the browser element changed so your code will stop working - rather than going by ID you should use window.messageContent
variable which will work both in the current and future versions. Together you get:
var browser = null;
if ("gBrowser" in window)
browser = window.gBrowser; // Firefox and SeaMonkey Browser
else if ("messageContent" in window)
browser = window.messageContent; // Thunderbird
else if ("getMessageBrowser" in window)
browser = window.getMessageBrowser(); // SeaMonkey Mail
if (browser)
...
Now about listening to page loads, the remended approach here is progress listeners - see https://developer.mozilla/en/Code_snippets/Progress_Listeners. You attach a progress listener to the browser and look for state changes:
onStateChange: function(aWebProgress, aRequest, aFlag, aStatus)
{
if ((aFlag & Components.interfaces.nsIWebProgressListener.STATE_STOP) &&
(aFlag & Components.interfaces.nsIWebProgressListener.STATE_IS_WINDOW))
{
// A window finished loading
doSomething(aWebProgress.DOMWindow);
}
}
The accepted answer is outdated. The solution using the WebExtensions API would be
browser.tabs.onUpdated.addListener(function(tabId, changeInfo) {
if (changeInfo.status == "plete") {
//add your script
}
})
browser.tabs.onUpdated.addListener
Listens to events within the Tab (Reference)
(changeInfo.status == "plete")
filters the right event and executes the mands within the if statement.