mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-28 13:39:44 +07:00
19 lines
318 B
JSON
19 lines
318 B
JSON
{
|
|
"manifest_version": 2,
|
|
"name": "Shared Script Sample: More Dragons!",
|
|
"minimum_chrome_version": "24.0.1307.0",
|
|
"version": "2.0",
|
|
"icons": {
|
|
"16": "icon_16.png",
|
|
"128": "icon_128.png"
|
|
},
|
|
"app": {
|
|
"background": {
|
|
"scripts": ["main.js"]
|
|
}
|
|
},
|
|
"permissions": [
|
|
"webview"
|
|
]
|
|
}
|