The main problem is that my extension is loading into every iframes on a target webpage. It puts buttons that appear inside the iframes as well. I want them to disappear. The window and document objects are shown as the parent's window and document objects. So it's impossible to check the document location for example because it shows the parent's location instead of the iframe's location.
|
You could write a user script which uses the Writing user scripts is much easier than writing Page Mods too. |
|||||
|
|
One workaround is to put something like this in your content script:
The content script will still be added to every page, but it's a relatively simple and lightweight check for iFrames. |
|||
|
|
|
Edit: now (Add-on SDK version 1.11 released) The following information is outdated (can be used if you build against Add-on SDK 1.10 or previous: Unfortunately But if you really want to inject your script only once per page, on the top frame, you have to use Bellow I provide and example for porting from Old pagemod way:
New tabs way:
|
||||
|
|
window.top != window? – Wladimir Palant Sep 8 '11 at 6:01