flashlang/src/manifest.json

28 lines
490 B
JSON
Raw Normal View History

2020-07-23 16:48:51 +02:00
{
2020-07-27 00:55:08 +02:00
"browser_specific_settings": {
"gecko": {
"id": "addon@example.com",
"strict_min_version": "42.0"
}
},
2020-07-23 16:48:51 +02:00
"name": "Lingo",
"manifest_version": 2,
"version": "0.1",
"browser_action": {
"browser_style": true,
2020-07-27 00:55:08 +02:00
"default_popup": "popup.html"
2020-07-23 16:48:51 +02:00
},
2020-08-18 22:17:04 +02:00
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
2020-07-27 00:55:08 +02:00
"background": { "scripts": ["background.bundle.js"] },
2020-08-16 16:11:51 +02:00
"permissions": [
"<all_urls>",
"sessions",
"webRequest",
"webRequestBlocking",
"storage"
]
2020-07-23 16:48:51 +02:00
}