docspell/tools/webextension/manifest.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
698 B
JSON
Raw Normal View History

2019-09-20 23:40:46 +00:00
{
"manifest_version": 2,
"name": "__MSG_extensionName__",
"description": "__MSG_extensionDescription__",
"version": "1.0",
"permissions": [
"notifications",
"downloads",
"contextMenus",
"nativeMessaging"
],
"browser_specific_settings": {
"gecko": {
"id": "docspell@eikek.github.io",
"strict_min_version": "50.0"
}
},
"description": "Downloads a file and pushes it to docspell.",
"icons": {
"48": "icons/logo-48.png",
"96": "icons/logo-96.png"
},
"background": {
"scripts": [
"docspell.js"
]
},
"default_locale": "en"
}