feat: add more extensions manifest key options (#39599)

feat: add more manifest key options
This commit is contained in:
Shelley Vohr 2023-08-28 16:02:22 +02:00 committed by GitHub
parent f2f83a73fc
commit f369b144d6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 132 additions and 1 deletions

View file

@ -0,0 +1 @@
document.documentElement.style.backgroundColor = 'blue';

View 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
}