Files
thunderbird-paperless-conne…/manifest.json
2026-09-04 19:50:29 +02:00

56 lines
1.2 KiB
JSON

{
"manifest_version": 3,
"name": "__MSG_extName__",
"description": "__MSG_extDescription__",
"version": "1.5.1",
"author": "Marco Morath",
"homepage_url": "https://gitea.cloud.mmorath.de/marco.morath/thunderbird-paperless-connector",
"default_locale": "de",
"browser_specific_settings": {
"gecko": {
"id": "webmaster@mmorath.de",
"strict_min_version": "128.0"
}
},
"permissions": [
"storage",
"menus",
"messagesRead",
"compose",
"notifications"
],
"optional_host_permissions": [
"http://*/*",
"https://*/*"
],
"background": {
"scripts": [
"background.js"
],
"type": "module"
},
"options_ui": {
"page": "ui/options.html",
"open_in_tab": true
},
"message_display_action": {
"default_title": "__MSG_actionStore__",
"default_icon": {
"16": "icons/paperless-store_16.png",
"32": "icons/paperless-store_32.png"
}
},
"compose_action": {
"default_title": "__MSG_actionInsert__",
"default_icon": {
"16": "icons/paperless-insert_16.png",
"32": "icons/paperless-insert_32.png"
}
},
"icons": {
"16": "icons/paperless-logo_16.png",
"32": "icons/paperless-logo_32.png",
"64": "icons/paperless-logo_64.png"
}
}