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?