mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-29 13:49:41 +07:00
20 lines
332 B
JSON
20 lines
332 B
JSON
{
|
|
"manifest_version": 2,
|
|
"name": "Insert CSS API Sample",
|
|
"minimum_chrome_version": "24.0.1307.0",
|
|
"version": "2.0",
|
|
"icons": {
|
|
"16": "icon_16.png",
|
|
"128": "icon_128.png"
|
|
},
|
|
"app": {
|
|
"background": {
|
|
"scripts": ["config.js", "main.js"]
|
|
}
|
|
},
|
|
"permissions": [
|
|
"webview",
|
|
"storage"
|
|
]
|
|
}
|