upped manifest version to 3; renamed icon files

This commit is contained in:
eclipse 2025-08-29 18:00:00 +02:00
parent 71779f4cdc
commit 959d201d63
4 changed files with 13 additions and 8 deletions

View File

Before

Width:  |  Height:  |  Size: 4.1 KiB

After

Width:  |  Height:  |  Size: 4.1 KiB

View File

Before

Width:  |  Height:  |  Size: 4.1 KiB

After

Width:  |  Height:  |  Size: 4.1 KiB

View File

Before

Width:  |  Height:  |  Size: 4.1 KiB

After

Width:  |  Height:  |  Size: 4.1 KiB

View File

@ -1,33 +1,38 @@
{ {
"manifest_version": 2, "manifest_version": 3,
"name": "samoware-multisave", "name": "samoware-multisave",
"version": "1.0", "version": "1.0",
"description": "When using the groupware CommuniGate with the web application Samoware, this browser extension saves all attachments from the currently opened email to a directory of the user's choosing, prefixing each entry's filename with the current date. Yep, it's quite specific.", "description": "When using the groupware CommuniGate with the web application Samoware, this browser extension saves all attachments from the currently opened email to a directory of the user's choosing, prefixing each entry's filename with the current date. Yep, it's quite specific.",
"icons": { "icons": {
"48": "icons/icons8-samovar-48.png", "48": "icons/samovar-48.png",
"96": "icons/icons8-samovar-96.png" "96": "icons/samovar-96.png"
}, },
"permissions": [ "permissions": [
"activeTab", "activeTab",
"tabs", "scripting",
"downloads" "downloads"
], ],
"host_permissions": [
"*://localhost/*",
"https://communigate.aip.de/"
],
"page_action": { "page_action": {
"default_icon": "icons/icons8-samovar-32.png", "default_icon": "icons/samovar-32.png",
"default_title": "Samoware MultiSave", "default_title": "Samoware MultiSave",
"show_matches": [ "show_matches": [
"https://communigate.aip.de/*" "https://communigate.aip.de/*",
"*://localhost/*"
] ]
}, },
"background": { "background": {
"scripts": [ "scripts": [
"background.js" "background.js"
], ]
"persistent": false
} }
} }