45 lines
1.0 KiB
JSON
45 lines
1.0 KiB
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "samoware-multisave",
|
|
"version": "1.0",
|
|
|
|
"description": "When using the groupware CommuniGate in combination 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, while also raising a print dialog for the mail body. Yep, it's quite specific.",
|
|
|
|
"icons": {
|
|
"48": "icons/samovar-48.png",
|
|
"96": "icons/samovar-96.png"
|
|
},
|
|
|
|
"permissions": [
|
|
"activeTab",
|
|
"scripting",
|
|
"downloads"
|
|
],
|
|
|
|
"host_permissions": [
|
|
"*://localhost/*",
|
|
"https://communigate.aip.de/"
|
|
],
|
|
|
|
"page_action": {
|
|
"default_icon": "icons/samovar-32.png",
|
|
"default_title": "Samoware MultiSave",
|
|
"show_matches": [
|
|
"https://communigate.aip.de/*",
|
|
"*://localhost/*"
|
|
]
|
|
},
|
|
|
|
"background": {
|
|
"scripts": [
|
|
"background.js"
|
|
]
|
|
},
|
|
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["https://communigate.aip.de/*"],
|
|
"js": ["contentscript.js"]
|
|
}
|
|
]
|
|
} |