Jeder Client meldet beim Start seinen Status (Name, Abteilung, Plugin- und Thunderbird-Version) als _clients/<email>.json ins Gitea-Repo — aber nur, wenn sich tatsächlich etwas geändert hat (kein Commit-Spam pro Start). Web-Editor: neuer Admin-Unterpunkt "User & Versionen" (Route /api/clients) mit Tabelle je User und "veraltet"-Markierung für Clients, die nicht auf der neuesten gemeldeten Version laufen. _clients/ ist in den Ordner-Filtern ausgenommen, damit es nicht als Abteilung erscheint. Nebenbei: Web-Editor-Button-Label "Abteilung" -> "Vorlage" (Templates-Tab). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_015PZHd9vRsBiH8cKYdQo1Yv
76 lines
1.8 KiB
JSON
76 lines
1.8 KiB
JSON
{
|
|
"manifest_version": 2,
|
|
"name": "HPS Vorlagen & Signaturen",
|
|
"version": "2.5.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/hps/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/forced-prefs-list.js",
|
|
"lib/gitea-sync.js",
|
|
"background.js"
|
|
],
|
|
"persistent": true
|
|
},
|
|
"experiment_apis": {
|
|
"forcedPrefs": {
|
|
"schema": "experiments/prefs/schema.json",
|
|
"parent": {
|
|
"scopes": ["addon_parent"],
|
|
"paths": [["forcedPrefs"]],
|
|
"script": "experiments/prefs/api.js"
|
|
}
|
|
}
|
|
},
|
|
"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
|
|
}
|
|
}
|