Files
hps-thunderbird-templates/manifest.json
Kendrick Bollens cf051458bb Feature: WYSIWYG-Editor, Gitea-Sync, Signaturen-Verwaltung
- WYSIWYG-Editor mit contenteditable statt Textarea (MDI-Icons, System-Fonts, Farbwähler)
- Gitea-Sync: Templates per Abteilung aus Git-Repo laden/hochladen mit Commit-Author
- Abteilungsordner + _gemeinsam Ordner, einzelnes Pull/Push pro Vorlage
- Sync-Status pro Vorlage (grün/rot/grau Ampel), persistent über Neustarts
- Signaturen-Tab: Identitäten bearbeiten, aus Datei laden, Sync über signatures/ Ordner
- Persönliche Signaturen für geteilte E-Mail-Adressen (pro Mitarbeiter)
- Tab-Navigation: Vorlagen, Signaturen, Synchronisierung
- Auto-Pull beim Thunderbird-Start (Templates + Signaturen)
2026-04-20 16:30:40 +02:00

39 lines
873 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",
"accountsRead",
"accountsIdentities"
],
"optional_permissions": [
"*://*/*"
],
"background": {
"scripts": ["lib/gitea-sync.js", "background.js"],
"persistent": true
},
"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
}
}