samoware-multisave/manifest.json
2025-08-28 21:06:45 +02:00

33 lines
819 B
JSON

{
"manifest_version": 2,
"name": "samoware-multisave",
"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.",
"icons": {
"48": "icons/icons8-samovar-48.png",
"96": "icons/icons8-samovar-96.png"
},
"permissions": [
"activeTab",
"tabs",
"downloads"
],
"page_action": {
"default_icon": "icons/icons8-samovar-32.png",
"default_title": "Samoware MultiSave",
"show_matches": [
"https://communigate.aip.de/*"
]
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
}
}