mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-27 13:29:34 +07:00
19 lines
495 B
JSON
19 lines
495 B
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "Multiple side panels",
|
|
"version": "1.0",
|
|
"description": "This recipe shows how to use sidePanel.getOptions() to retrieve the current side panel and switch between side panels.",
|
|
"background": {
|
|
"service_worker": "service-worker.js"
|
|
},
|
|
"action": {
|
|
"default_title": "Click to open panel"
|
|
},
|
|
"icons": {
|
|
"16": "images/icon-16.png",
|
|
"48": "images/icon-48.png",
|
|
"128": "images/icon-128.png"
|
|
},
|
|
"permissions": ["sidePanel"]
|
|
}
|