mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-04-12 06:09:05 +07:00
18 lines
310 B
JSON
18 lines
310 B
JSON
{
|
|
"name": "Optional Permissions Sample",
|
|
"version": "2.1",
|
|
"manifest_version": 2,
|
|
"minimum_chrome_version": "23",
|
|
"description": "Shows how to use the optional permissions API",
|
|
|
|
"app": {
|
|
"background": {
|
|
"scripts": [ "main.js" ]
|
|
}
|
|
},
|
|
|
|
"optional_permissions": [
|
|
"serial"
|
|
]
|
|
}
|