mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-04-12 06:09:05 +07:00
20 lines
410 B
JSON
20 lines
410 B
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "Tab Manager",
|
|
"version": "1.0",
|
|
"icons": {
|
|
"16": "images/icon-16.png",
|
|
"32": "images/icon-32.png",
|
|
"48": "images/icon-48.png",
|
|
"128": "images/icon-128.png"
|
|
},
|
|
"background": {
|
|
"service_worker": "background.js"
|
|
},
|
|
"action": {},
|
|
"side_panel": {
|
|
"default_path": "sidepanel.html"
|
|
},
|
|
"permissions": ["tabGroups", "sidePanel", "tabs"]
|
|
}
|