mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-04-04 14:49:44 +07:00
29 lines
530 B
JSON
29 lines
530 B
JSON
{
|
|
"manifest_version": 2,
|
|
"name": "Declarative Web Request 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",
|
|
"*://*/*"
|
|
],
|
|
"webview": {
|
|
"partitions": [
|
|
{
|
|
"name": "blockable",
|
|
"accessible_resources": ["browser.css", "blocked.css", "blocked.html"]
|
|
}
|
|
]
|
|
}
|
|
}
|