Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am developing a xul based addon. I want to be able to pass a parameter to the addon when it is installed. I suppose basically something like this:

var xpi= {
    "Extension": {
         URL      : "myextension.xpi?param1=value",
         toString : function () { return this.URL; }
    }
};
InstallTrigger.install(xpi);

After reading the documentation I thought I could use AddonManager.addAddonListener onInstalled and getResourceURI() and break it apart at the ? but that would only be called if I already had the extension installed in the first place and I need it to run at first install. Any other options?

share|improve this question

1 Answer

I came up with a solution around this problem. On my install page, I set a cookie. It set to expire in 1 day (Doesn't matter how long as long as it's not a session cookie, as it would be destroyed on browser restart). The user downloads/installs/restarts the browser. I already detect first time extension run and open a "Success page". My success page detects the cookie previously set on the install page, and use postMessage to send the data to my addon.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.