mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-04-12 06:09:05 +07:00
18 lines
285 B
JSON
18 lines
285 B
JSON
{
|
|
"name": "Sandboxed Frame Sample",
|
|
"version": "1.0.2",
|
|
"manifest_version": 2,
|
|
"minimum_chrome_version": "23",
|
|
"app": {
|
|
"background": {
|
|
"scripts": ["main.js"]
|
|
}
|
|
},
|
|
"icons": {
|
|
"128": "icon_128.png"
|
|
},
|
|
"sandbox": {
|
|
"pages": ["sandbox.html"]
|
|
}
|
|
}
|