electron/spec/fixtures/extensions/minimum-chrome-version/manifest.json
Shelley Vohr f369b144d6
feat: add more extensions manifest key options (#39599)
feat: add more manifest key options
2023-08-28 10:02:22 -04:00

14 lines
280 B
JSON

{
"name": "chrome-too-low-version",
"version": "1.0",
"minimum_chrome_version": "999",
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["main.js"],
"run_at": "document_start"
}
],
"permissions": ["storage"],
"manifest_version": 3
}