25 lines
448 B
JSON
25 lines
448 B
JSON
{
|
|
"$schema": "http://json.schemastore.org/webextension",
|
|
"manifest_version": 2,
|
|
"name": "WebExtension Storage Tests",
|
|
"version": "0.1.0",
|
|
"applications": {
|
|
"gecko": {
|
|
"id": "webextension-storage-tests@holllo.org"
|
|
}
|
|
},
|
|
"background": {
|
|
"scripts": [
|
|
"background.js"
|
|
]
|
|
},
|
|
"browser_action": {},
|
|
"options_ui": {
|
|
"page": "index.html",
|
|
"open_in_tab": true
|
|
},
|
|
"permissions": [
|
|
"storage"
|
|
]
|
|
}
|