I have the following piece of code in my Firefox addon:
var firstrun = Services.prefs.getBoolPref(\"extensions.CustomButton.firstrun\"); if (firstrun) { /
AddonManager.addAddonListener({ onUninstalling: function(addon){ // alert("uninstalling!"); Services.prefs.setBoolPref("extensions.CustomButton.firstrun", true); } });