Files
hps-thunderbird-templates/manifest.json
Kendrick Bollens eff90e9517 Auto-Update über Gitea einrichten + Web-Editor + Sync-Verbesserungen
- Thunderbird Auto-Update: update_url im Manifest, updates.json, release.sh
- .xpi neu gebaut (mit update_url, ohne defaults.local.json/Token)
- README + CLAUDE.md: Auto-Update-Doku, Repo muss public bleiben
- web-editor/ (Node/Docker WYSIWYG-Editor) hinzugefügt
- gitea-sync.js + templates_options: bestehende Anpassungen

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-18 00:12:33 +02:00

61 lines
1.5 KiB
JSON

{
"manifest_version": 2,
"name": "HPS Vorlagen & Signaturen",
"version": "2.3.0",
"description": "Vorlagen- und Signaturverwaltung für Hotel Park Soltau mit Git-Sync",
"browser_specific_settings": {
"gecko": {
"id": "it@hotel-park-soltau.de",
"strict_min_version": "109.0",
"update_url": "https://git.hotel-park-soltau.de/kendrick.bollens/hps-thunderbird-templates/raw/branch/main/updates.json"
}
},
"permissions": [
"compose",
"storage",
"notifications",
"tabs",
"accountsRead",
"accountsIdentities",
"messagesTagsList",
"messagesTags",
"messagesRead",
"messagesUpdate",
"messagesMove",
"accountsFolders"
],
"optional_permissions": [
"*://*/*"
],
"background": {
"scripts": ["lib/gitea-sync.js", "background.js"],
"persistent": true
},
"browser_action": {
"default_icon": {
"16": "icons/icon.png",
"32": "icons/icon.png"
},
"default_title": "Vorlagen & Signaturen verwalten",
"default_label": "Vorlagen & Signaturen"
},
"compose_action": {
"default_icon": {
"16": "icons/icon.png",
"32": "icons/icon.png"
},
"default_popup": "popup.html",
"default_label": "Vorlagen"
},
"message_display_action": {
"default_icon": {
"16": "icons/icon.png",
"32": "icons/icon.png"
},
"default_label": "QuickMove"
},
"options_ui": {
"page": "templates_options/templates_options.html",
"browser_style": true
}
}