Does somebody know of a way to display 'Hello World' in a blank page when a user of Firefox opens a new tab (with an extension) ?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Use this on your XUL file:
For the raw window (Same window if you type a script on the address bar) see this. |
|||||||
|
window.getElementById("content_id").innerHTML = "something";. When in XUL window refers to the current XUL. – BrunoLM Apr 29 '11 at 14:48gBrowserinstead ofwindowyou can modify other elements. Openomni.jaron Firefox folder and dig XUL files to see the IDs... – BrunoLM Apr 29 '11 at 15:05