Hello, I want to change a Firefox extension. What I've done is found it in the Firefox profile folder, renamed the .jar to .zip, unzipped it, made the changes in a .js file (I didn't make a mistake in JS code), zipped it back and renamed to .jar. So now the button to start that extension has disappeared from the menu in Firefox :) What is the proper way to bring minor changes to a Firefox plugin?
Update: I've tried to make the changes minimum to test if it'll work: I've replaced
stepsVariations.push(new WTRStep("clickButton", {label: _oTarget.alt}))
with
stepsVariations.push(new WTRStep("clickButton", {label: _oTarget.alt+"test"}))
still the same
Update: I've tried the .xpi thing, still the same - not even a button in the menu.