mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-16 06:18:35 +02:00
Increase the minimum version to match the official [userScripts](https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/API/userScripts#browser_compatibility) release.
22 lines
561 B
JSON
22 lines
561 B
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "User Scripts Manager extension",
|
|
"description": "Demonstrates the userScripts API and optional permission, in MV3.",
|
|
"version": "0.1",
|
|
"host_permissions": ["*://*/"],
|
|
"permissions": ["storage", "unlimitedStorage"],
|
|
"optional_permissions": ["userScripts"],
|
|
"background": {
|
|
"scripts": ["background.js"]
|
|
},
|
|
"options_ui": {
|
|
"page": "options.html"
|
|
},
|
|
"browser_specific_settings": {
|
|
"gecko": {
|
|
"id": "user-script-manager-example@mozilla.org",
|
|
"strict_min_version": "136.0"
|
|
}
|
|
}
|
|
}
|