mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-04-04 14:49:44 +07:00
23 lines
512 B
JSON
23 lines
512 B
JSON
{
|
|
"name": "Broken Background Color",
|
|
"version": "1.0",
|
|
"description": "Fix an Extension!",
|
|
"permissions": ["activeTab", "scripting", "storage"],
|
|
"options_page": "options.html",
|
|
"background": {
|
|
"service_worker": "service-worker.js"
|
|
},
|
|
"action": {
|
|
"default_popup": "popup.html",
|
|
"default_icon": {
|
|
"16": "images/icon-16.png",
|
|
"128": "images/icon-128.png"
|
|
}
|
|
},
|
|
"icons": {
|
|
"16": "images/icon-16.png",
|
|
"128": "images/icon-128.png"
|
|
},
|
|
"manifest_version": 3
|
|
}
|