mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-28 13:39:44 +07:00
* Init commit * Add sidepanel open cookbook * Add minimum chrome version * Add 116 on readme * Add extension page Add content script * Tweak * Tweak 2 * ¯\_(ツ)_/¯ * Update readme * Update readme * Change sample name in Readme * Bold Chrome 116 for emphasis * Typo fix
18 lines
399 B
JSON
18 lines
399 B
JSON
{
|
|
"name": "Dictionary side panel",
|
|
"version": "0.1",
|
|
"manifest_version": 3,
|
|
"description": "Provides definitions in the side panel.",
|
|
"background": {
|
|
"service_worker": "service-worker.js"
|
|
},
|
|
"icons": {
|
|
"128": "images/icon-128.png",
|
|
"16": "images/icon-16.png"
|
|
},
|
|
"side_panel": {
|
|
"default_path": "sidepanel.html"
|
|
},
|
|
"permissions": ["sidePanel", "contextMenus"]
|
|
}
|