0
votes
0answers
41 views

Clear Specific Host Cache on Firefox Extension

Its my first time to build a Firefox extension. And I need to clear the cache of specific hosts but multiple. Around 5 or so hosts cache to be wiped when this functions is called. But this code ...
0
votes
1answer
74 views

Access dom after “chrome-document-global-created”

I need to get the DOM when the Mozilla observer event "chrome-document-global-created" is fired. Therefore, I have the following code. But how can I get the DOM from there? Data is null (according to ...
3
votes
2answers
224 views

How to use nsIParserUtils inside firefox addon sdk 1.10 main.js?

My recent submission for Firefox add-on site (based on Firefox Add-on SDK 1.10) was rejected because I have not sanitized the input I use and was suggested to use nsIParserUtils. I found the function ...
0
votes
2answers
80 views

Get surrounding DOM node of selection

I need to get the surrounding DOM node from a selected text. How do I do that with the Firefox Add-on SDK? Or is there any other possibility that I can use in my extension? E.g. (the selected is ...
0
votes
1answer
91 views

ownerDocument property of node is null

I am working on a Firefox extension in which I am trying to find if a given node intersects the selection range in a web page. For this, I am using the following code: var rangeIntersectsNode = ...
1
vote
2answers
639 views

How to properly receive the DOMContentLoaded event from an XUL iframe?

I'm working on a minimal Firefox extension that loads a web page into an XUL iframe. (I also tried the html:iframe, but met identical results.) The page may take some time to load completely - and ...
0
votes
0answers
159 views

How to properly change the position of statusbar-display element in Firefox

I'm developing a Firefox Extension and I want to place an permanent browser element containing a JApplet on the right side of the browser. I have described a problem I faced doing that in a previous ...
0
votes
2answers
418 views

Appending XUL element(s) into DOM from a string of markup

I am writing a Firefox extension using JS and XUL. Part of my code needs to be able to take some XUL markup and dynamically append it inside an existing container element. So basically I need to ...
1
vote
1answer
410 views

Firefox Extension: Access the DOM Before It's Loaded

I'm trying to create a Firefox extension that fires my Javascript code before any of the current page's Javascript is fired. My Javascript code will basically control whether or not the page's ...
-1
votes
1answer
174 views

Make a Firefox add-on to inject some DIVs and add styles. That's it

I am going to ask a VERY general question. I was working on a bookmarklet and decided to create a few browser extensions as well. I was able to make Safari and Chrome extensions pretty quickly but ...
0
votes
1answer
216 views

Using insertBefore with Anonymous Content (XBL) not working as expected in Firefox Add-On

I am trying to add a dropmarker to the Firefox Search Bar. Most of it is Anonymous Content implemented in XBL. I want to start by adding an hbox container among the anonymous child contents of ...
0
votes
2answers
52 views

Creating element in browser extension inherits browser css?

I'm working on a firefox extension and one of the things I need to do is adding an element to the dom. I have no problem with this, except that I note that this element inherits some style from ...
0
votes
1answer
83 views

How to access nsIEditor of contentEditable elements?

When my extension gets access to an INPUT (type "text") or TEXTAREA element of the currently displayed webpage in Firefox, I can use QueryInterface to cast it to a JS object of type ...
0
votes
1answer
175 views

Updating Firefox toolbarbutton using listStyleImage attribute

I am trying to update the css attribute for a toolbarbutton but the following does not work: document.getElementById('toolbar-button').style.listStyleImage = ...
0
votes
2answers
281 views

Finding dynamically created div

I want to change my dynamically created div but i can't get this working it's keep creating new divs var div = document.getElementById('windowx'); var btn; var doc = content.document if (div) { ...
1
vote
1answer
197 views

Save a loaded picture from firefox extension

From within my firefox extension I want to save a picture which is already loaded and shown in a browser tab. I only found ways to download a file or picture directly from the server with a binary ...
2
votes
2answers
144 views

how to know when the DOM is ready again after changing URL with window.location.href

I'm writing a Firefox extension using Add-on SDK and I successfully scanned a site from a content script and want to go deeper now. However, when I change the url with window.location.href = ...
0
votes
1answer
100 views

Accessing fully developed dom through plugin in Firefox

I need to see the fully loaded and devloped dom of a page, i.e after my client loads up my page I want them to be able to click a button on fire fox and then fire fox will send me the fully developed ...
0
votes
4answers
117 views

Are there any clear limits of JavaScript in relation to manipulating the browser and DOM?

I heard that getting access to the text a Gmail email is very difficult if not impossible (iframes). Are there certain areas where JavaScript is not capable of doing something?
0
votes
1answer
355 views

Firefox Addons: Hidden <browser /> in XUL Overlay?

I'm trying to load and manipulate a hidden <browser /> tag in my overlay (part of my addon's functionality) in my Firefox Addon. But, I can't access any of the elements I add in my overlay from ...
1
vote
1answer
366 views

How to access XUL Overlay's DOM

In my Firefox Addon's overlay.xul, can I access it's DOM in javascript? I can't figure out how. Thanks in advance.
0
votes
1answer
288 views

Parse DOM in XPCOM autocomplete component

I know we should use JSON when receiving remote "autocomplete suggestions", but I'm forced to use standard DOM valid XHTML I have registered component of interface nsIAutoCompleteSearch and using ...
3
votes
1answer
77 views

How to check whether a node belongs to html or the browser window using javascript?

I'm working on a Firefox extension, in that I have a node which I want to know that whether the node belongs to the html (I mean the node belongs to document.body elements like div, p, etc) or just ...
1
vote
1answer
387 views

Accesing DOM with pages using AJAX (Firefox extension)

I'm trying to learn to create extensions with Firefox but I'm running into some issues and I hope someone more experienced could give me some tips. The idea was doing a dummy extension that would ...
4
votes
2answers
926 views

'document' vs. 'content.document'

I'm trying to write a Firefox extension that adds elements to the loaded page. So far, I get the root element of the document via var domBody = content.document.getElementsByTagName("BODY").item(0); ...
6
votes
4answers
3k views

Alternative to DOMNodeInserted

DOMNodeInserted is known to make dynamic pages slow, MDN even recommends not using it altogether, but doesn't provide any alternatives. I'm not interested in the element inserted, I just need to know ...
0
votes
1answer
122 views

How can I anchor a panel to a DOM element in addon-builder?

The addon-builder documentation says this for the panel API, but doesn't go into details: show(anchor) Displays the panel. [ anchor : handle ] A handle to a DOM node in a page to which the panel ...
0
votes
2answers
142 views

Incorrectly formatted html inconsistencies between DOM and what's displayed in firefox plugin

I'm currently developing a firefox plugin. This plugin has to handle very crappy website that is really incorrectly formatted. I cannot modify these websites, so I have to handle them. I reduced the ...
0
votes
2answers
1k views

Body is undefined

I have the following code in javascript (firefox extension) var body; var Test = { initializeBody: function(e) { if (!e.originalTarget.defaultView.frameElement) { body = ...
0
votes
2answers
231 views

Building a Firefox extension to parse through script tags

I am in the process of building my first Firefox extension and I've hit a wall. I'm also not familiar with javascript, though I do know how to program. The extension is attempting identify malicious ...
1
vote
1answer
259 views

Firefox extension - Create new blank XML DOM object

I'm working on a Firefox extension which includes exporting data into a XML file So, how do I create a new blank DOM document object via a component service in which I could write all my data before ...
3
votes
2answers
296 views

Setting .innerHTML

I am developing a Firefox extension which need to change some values on a specific <div>. I try to inject this into the DOM by tying this into the URL bar: ...
1
vote
3answers
1k views

Event before 'load event' for Firefox extension?

I'm writing a Firefox extension, This is my XUL (no problem there) <?xml version="1.0" encoding="ISO-8859-1"?> <!DOCTYPE overlay SYSTEM "chrome://locale/myDtd.dtd"> <page ...
0
votes
3answers
1k views

Measure the time Firefox needs for rendering a page and evaluating JavaScript and CSS

Is it possible to measure the time Firefox needs for rendering a page and evaluating all the JavaScript and CSS sources? I tried it with Firebug, YSlow and Google Page Speed but none of them satisfied ...
1
vote
1answer
575 views

Make Pagemod and Page-worker modules to work together?

I'm working on a Firefox extension project that requires me to use the TAB key to toggle through all the links on the page, extract the its URL, fetch its source code, and parse it. Currently, I'm ...
1
vote
1answer
697 views

Allow content documents (web pages) to detect my Firefox addon

In my Firefox addon I'm looking for a secure way to let content code detect the presence of the addon itself. Ideally what I'd like to end up with is allowing content code to query the presence of my ...
0
votes
2answers
561 views

JavaScript Node.replaceChild() doesn't count new child's innerHtml

While creating a Firefox addon, I've run into a weird problem. I have an array of nodes, returned by some iterator. Iterator returns only nodes, containing Node.TEXT_NODE as one or more of it's ...
2
votes
2answers
499 views

Insert iFrame and then have it load before all other content on FF

I have browser plugins that insert an iframe into a webpage. The iframe is inserted as early as possible (using DOMContentLoaded) so that the contents of the iframe will render with the page. In ...
0
votes
2answers
130 views

why the selected text not appear?

hi i have problem with my first addons.. i try to select the word on the website page with this function function getSelected() { var userSelection; if (window.getSelection) { ...
5
votes
2answers
1k views

DOMContentLoaded event firing twice for a single page load

I authored a Firefox add-on several months ago that recently failed. The add-on basically looks for a particular URL and then modifies the DOM for the page. I traced the failure to the (accidental) ...
0
votes
1answer
411 views

Accessing DOM from DOMContentLoaded event?

Is there a way to access the DOM from the event fired by DOMContentLoaded? window.addEventListener("load", function() { myExtension.init(); }, false); var myExtension = { init: function() { ...
6
votes
3answers
1k views

Override default jQuery selector context

I'm trying to use jQuery inside a Firefox extension, and actually want to use jQuery to manipulate the DOM of the current page, as opposed to the context of the XUL file. Thus, I load jQuery in my XUL ...
1
vote
1answer
132 views

Triggering click events from within a FF sandbox

I am trying to trigger a click event on an element on a page from within a Firefox sandbox. I have tried using jQuery's .click() as well as doing: var evt = document.createEvent("HTMLEvents"); ...
3
votes
1answer
3k views

Detect page load completed event in Firefox

I'm writing a Firefox add-on that do something after the webpage is completely loaded.My current code is var target = this; const STATE_STOP = ...
1
vote
1answer
126 views

XY positions of hyperlinks in Firefox plugin

I want to build a FireFox addon that can capture a webpage as an image (which seems simple using a canvas object) and also preserve the XY postions of the hyperlinks present in the webpage. I wanted ...
1
vote
2answers
587 views

Will I be able to get a list of registered event handlers on a DOM node inside a firefox extension?

I don't know a thing about implementing extensions in Firefox, but having not seen an extension that does anything like this in the Mozilla's addons page, I don't believe it is possible, but thought I ...
1
vote
2answers
302 views

Load a dynamically created document in the browser from a Firefox extension

Is there a way to load a DOM document dynamically created from the scope of a Firefox extension to a tab in the current browser? I would like to create an HTML report from a Firefox extension and ...
0
votes
1answer
263 views

I try to add a new button to Firefox, but it's the old button that gets added!

Once, I tried adding a button with "bookmark-item pagerank" as class to PersonalToolbar. Now, the code... function createToolbarButton() { const XUL_NS = ...
0
votes
1answer
471 views

Accessing the Firefox object model

Is it possible to access the DOM of a firefox page from a process outside of Firefox (in Windows.) It is possible to do with in IE via the accessibility interface and is a commonly used technique to ...
0
votes
1answer
310 views

Firefox logs invalid URL?

I'm writing an extension for firefox. Using dom.location to keep track of visited search results pages, i'm getting this url ...

1 2