Files
hps-thunderbird-templates/manifest.json
Kendrick Bollens 3906c33967 Initial commit: Templates Reply Add-on für Hotel Park Soltau
Modifiziertes Templates Reply Thunderbird Add-on mit:
- HTML-Import von Netzlaufwerk
- Massen-Delete mit Checkboxen
- Deutsches UI mit "Vorlagen" Button
- 16 Hotel-Vorlagen als HTML-Dateien
2026-04-09 00:37:18 +02:00

33 lines
729 B
JSON

{
"manifest_version": 2,
"name": "Templates Reply",
"version": "1.0.3",
"description": "Insert your reply in the body of the message",
"browser_specific_settings": {
"gecko": {
"id": "stmt@proton.me",
"strict_min_version": "109.0"
}
},
"permissions": [
"compose",
"storage",
"notifications",
"tabs"
],
"background": {
"scripts": ["background.js"]
},
"compose_action": {
"default_icon": {
"16": "icons/icon.png",
"32": "icons/icon.png"
},
"default_popup": "popup.html",
"default_label": "Vorlagen"
},
"options_ui": {
"page": "templates_options/templates_options.html",
"browser_style": true
}
}