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
This commit is contained in:
Kendrick Bollens
2026-04-09 00:37:18 +02:00
commit 3906c33967
25 changed files with 1400 additions and 0 deletions

33
manifest.json Normal file
View File

@@ -0,0 +1,33 @@
{
"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
}
}