feat: add more extensions manifest key options (#39599)
feat: add more manifest key options
This commit is contained in:
parent
f2f83a73fc
commit
f369b144d6
9 changed files with 132 additions and 1 deletions
1
spec/fixtures/extensions/minimum-chrome-version/main.js
vendored
Normal file
1
spec/fixtures/extensions/minimum-chrome-version/main.js
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
document.documentElement.style.backgroundColor = 'blue';
|
14
spec/fixtures/extensions/minimum-chrome-version/manifest.json
vendored
Normal file
14
spec/fixtures/extensions/minimum-chrome-version/manifest.json
vendored
Normal file
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
"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
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue