gpt4 book ai didi

javascript - 限制特定浏览器版本上的 Firefox 扩展

转载 作者:行者123 更新时间:2023-12-03 00:23:57 24 4
gpt4 key购买 nike

我正在构建一个 Firefox 扩展,我希望它在特定的浏览器版本上运行。

例如,如果用户使用 Firefox 50,并且在设置(我相信是 manifest.json)中,我设置为仅在 48 或更低版本上运行,则不要启用该扩展。如果有人来下载该扩展并拥有版本 46,那么该扩展就会运行。

有可能做出这样的限制吗?

最佳答案

您需要使用browser_specific_settings key在 WebExtension list 中:

strict_max_version: maximum version of Gecko to support. If the Firefox version on which the extension is being installed or run is above this version, then the extension will be disabled, or not permitted to be installed. Defaults to "*", which disables checking for a maximum version.

"browser_specific_settings": {
"gecko": {
"id": "addon@example.com",
"strict_max_version": "48.0"
}
}

您可以通过这种方式设置最小和最大版本。

关于javascript - 限制特定浏览器版本上的 Firefox 扩展,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54173601/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com