Enhanced Outlook Web App
Improves the default behaviour of the Outlook Web App.
Was ist Enhanced Outlook Web App?
Enhanced Outlook Web App ist eine Chrome-Erweiterung, die von Tobias Günther entwickelt wurde, und ihr Hauptmerkmal ist "Improves the default behaviour of the Outlook Web App.".
Erweiterungsscreenshots
Enhanced Outlook Web App-Erweiterungs-CRX-Datei herunterladen
Laden Sie Enhanced Outlook Web App-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
This extension improves the free version of the Outlook Web App where ads are being blocked and spam-mails are automatically moved to the spam-folder.
Filtration of mails is based on senders and subjects which you define yourself.
Ads which currently are blocked include "ad-mails" and "Upgrade to Microsoft 365 Premium".
If you should encounter any issues, problems or bugs please report them to: [email protected] Grundlegende Informationen zur Erweiterung
| Name | |
| ID | ejolmkmnegbamafoknjamlggejcikonk |
| Offizielle URL | https://chromewebstore.google.com/detail/enhanced-outlook-web-app/ejolmkmnegbamafoknjamlggejcikonk |
| Beschreibung | Improves the default behaviour of the Outlook Web App. |
| Dateigröße | 68.16 KB |
| Installationsanzahl | 137 |
| Aktuelle Version | 1.6.6 |
| Letztes Update | 2024-02-09 |
| Veröffentlichungsdatum | 2023-09-09 |
| Entwickler | Tobias Günther |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Enhanced Outlook Web App",
"description": "Improves the default behaviour of the Outlook Web App.",
"version": "1.6.6",
"action": {
"default_icon": {
"32": "assets\/icon.png"
},
"default_title": "Enhanced Outlook Web App",
"default_popup": "html\/main.html"
},
"icons": {
"128": "assets\/icon.png"
},
"background": {
"service_worker": "js\/serviceWorker.js"
},
"permissions": [
"storage"
],
"content_scripts": [
{
"matches": [
"https:\/\/outlook.live.com\/mail\/*"
],
"js": [
"js\/utensils.js",
"js\/dbManagement.js",
"js\/errorManagement.js",
"js\/extendContextMenu.js",
"js\/removeAds.js",
"js\/removeJunk.js",
"js\/deleteJunk.js",
"js\/mainCS.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"assets\/*.png",
"js\/*.js"
],
"matches": [
"https:\/\/*\/*"
]
}
]
} | |