mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-06-21 09:58:26 +00:00
Add a firefox add-on
This commit is contained in:
36
tools/webextension/manifest.json
Normal file
36
tools/webextension/manifest.json
Normal file
@ -0,0 +1,36 @@
|
||||
{
|
||||
|
||||
"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"
|
||||
}
|
Reference in New Issue
Block a user