electron/spec/fixtures/extensions/minimum-chrome-version/manifest.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
280 B
JSON
Raw Normal View History

{
"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
}