How to map incoming responses to the outgoing requests when using HTTP observers: https://developer.mozilla.org/en/Setting_HTTP_request_headers#Observers ?
...
How can i trick my wall post using an application or any to trick my wall post so it say
11hours ago via iphone for facebook.It looks so cool...
...
I have developed a Firefox extension and installed in an xpi file. It's working fine. But I need to install my extension in the Windows registry. How can I to do this?
...
I have an object that contains circular references, and I would like to look at the JSON representation of it. For example, if I build this object:
var myObject = {member:{}};
myObject.member.child = {};
myObject.member.child.parent = myObject.member;
and try to call
JSON.stringify(myObject);
I get the error "too much recursion", n...
Hi Everyone, I developed a FireFox Plugin using Delphi 7. The only problem I faced and I don't have any idea how to do this, is how to return values from my Plugin to my browser? For example, I have created a function in my Plugin that will return the length of any string (just an example), and i need to pass it to my browser for server ...
i am trying to write my first hello world extension for firefox.
its working fine, but i also want to display image in status bar & image is not displaying.
my folder structure are as follows
helloworld
chrome.manifest
icon.png
install.rdf
->chrome
->content
...
Hi all
is there a way from firefox-extension-API to get notified when browser fires CONNECT to the Proxy ( for tunneling Https)? with on-request-... you can only get standard http-methods like get, post, put.
thanx
...
I'm writing a Thunderbird extension that performs a translation of the current message on demand. The translation is appended to the HTML in the message view pane (so it is not persistent).
Can a Thunderbird (or Firefox) extension modify the content sent to a printer? I'd like my users to be able to print the translations alongside the ...
I have the following javascript function in my extension:
function findPos(obj) {
var curleft = curtop = 0;
if (obj.offsetParent) {
curleft = obj.offsetLeft
curtop = obj.offsetTop
while (obj = obj.offsetParent) {
curleft += obj.offsetLeft
curtop += obj.offsetTop
}
}
return...
i am trying to basically replace a webpage's url with its ip address for example, instead of
www.facebook.com
i want to replace it with
66.220.153.11
Rationale
i have recently discovered that our school blocks websites based on a particular string patern in the url for example www.facebook.com is blocked but 66.220.153.11 is not ...
I've found code sample for google autocomplete and created other components for Bing and other search providers, but I can't switch autocompletion. I use following code to change autocompletesearch, but it doesn't work. Component works only if I define autocompletesearch property in XUL.
textbox.setAttribute("autocompletesearch", engine...
I'm adding a toolbaritem with a child toolbarbutton to <toolbarpalette id="BrowserToolbarPalette"> in a browser overlay for a Firefox extension which I'd like to be displayed by default when the extension is first installed.
What's the best way to do this?
...
I want to setup label attributes, and event listeners for a toolbaritem when it's being used. Because even though I add my extension's toolbaritem to <toolbarpalette id="BrowserToolbarPalette"> it is not found by document.getElementById unless it is being used. At the moment I have DOMNodeInserted event listeners on the navigation bar an...
So I've been working on updating old extensions for use with FF4 and Gecko 2 but I am having some issues where I am getting an error that says, classID missing or incorrect for component....
Has anyone else had a similar issue or know of how to get around this?
function jsshellClient() {
this.classDescription = "sdConnector JavaScrip...
Hi All,
I'm writing an application, which becomes "useful" once user is browsing certain url.
I want to add feature to my application, that it will be automatically launched once user browses this url, I was thinking of writing some sort of watchdog to trigger it.
My question is, whether there is a generic way to get notified when use...
Is there anyway to find the file path of images being showed to user in web page , or anyway to find them ?
I want source code/programming .
...
CAN'T REPRODUCE ANYMORE
The code below works fine when there is internet connection.
var socket = Cc["@mozilla.org/network/server-socket;1"]
.createInstance(Ci.nsIServerSocket);
socket.init(-1, true, -1);
socket.asyncListen(nsIServerSocketBug);
However once the computer is disconnected from the internet, I get
...
It would be extremely helpful for developing Firefox extensions if I could see the source of, e.g., chrome://browser/content/browser.xul with overlays applied. Is there a way to do this? Chrome List and "View Source" show only the base structure, ChromeBug requires restarting the browser and isn't too easy to get working.
...
After experimenting with a handful of new addons for Firefox, I've managed to foul up some setting permanently.
Using certain sites--take Netflix for example--upon clicking into a details page for a movie, I'll notice a
#height1754
being added onto the end of the URL. When I use the back button, the only thing that happens is the ...
Hello,
I have an extension composed of a browser overlay(ff-overlay.xul) which launches a sidebar(ff-sidebar.xul) through this code (from mozilla extension generator):
(in ff-overlay.xul)
<menupopup id="viewSidebarMenu">
<menuitem key="key_openSidebar_testinstallPackage" observes="viewSidebar_testinstallPackage" />
</menupopup>
<k...