
Security News
The Changelog Podcast: Practical Steps to Stay Safe on npm
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.
webext-store-incompat-fixer
Advanced tools
Package which clones a packed webextension and fixes incompatibilities with certain extension stores
Package which clones a packed webextension and fixes incompatibilities with certain extension stores.
webext-store-incompat-fixer --input somepackage.zip --stores edge,whale,firefox
or const webextStoreIncompatFixer = require('webext-store-incompat-fixer'); webextStoreIncompatFixer({ 'inputPath': 'some-package.zip', 'stores': ['edge', 'whale', 'firefox'] }).then(function () { console.log('finished'); })
Keep in mind it will only create separate packages if and only if adaptions are needed.
The idea behind this package is to allow one to keep one code base for all stores. This package doesn't cover all incompatibilities. If one is missing, feel free to open an issue.
The adaptions are mostly needed because of issues in the store. This means once those are fixed, adaptions in this package will be removed as well.
The manifest.name and manifest.short_name will be reduced to 45 characters if longer than 45 characters.
The manifest.name and manifest.short_name will be reduced to 45 characters if longer than 45 characters.
The microsoft edge store currently requires store descriptions for each language. Say you support 50 languages, you will have to create descriptions for each language in the store.
To overcome this, we make use of the language detection system of the edge store. It will only ask for additional assets if there is a translation for items found in the manifest file. Thus we remove those translations and keep others.
To force include a certain language, use the --edge-locale-inclusions option with a comma separated list of locales.
Microsoft confirmed this issue will be fixed at some point. Once they have, this adaption will be removed.
The whale store currently doesn't handle some characters. For now we remove the ™ symbol. Open an issue if there are more characters we should handle. Bug report: https://forum.whale.naver.com/topic/39748/
In addition, the whale store doesn't accept all language codes. Specifically, it requires language suffix to be a country code, which doesn't work for zh_Hans and zh_Hant. Those language files are moved to zh_CN and zh_TW if not found. Else it will remove the directories. Bug report: https://forum.whale.naver.com/topic/39749/
The Whale team mentioned they won't fix the language issue however they are currently looking into the character issue.
See also: https://forum.whale.naver.com/topic/27841/
The sandbox directive is removed from the content_security_policy field.
FAQs
Package which clones a packed webextension and fixes incompatibilities with certain extension stores
We found that webext-store-incompat-fixer demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.

Security News
Ruby's creator Matz assumes control of RubyGems and Bundler repositories while former maintainers agree to step back and transfer all rights to end the dispute.