Enhanced Outlook Web App
Improves the default behaviour of the Outlook Web App.
Hvad er Enhanced Outlook Web App?
Enhanced Outlook Web App er en Chrome-udvidelse udviklet af Tobias Günther, og dens hovedfunktion er "Improves the default behaviour of the Outlook Web App.".
Udvidelsesskærmbilleder
Download Enhanced Outlook Web App-udvidelses-CRX-fil
Download Enhanced Outlook Web App-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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]
Grundlæggende oplysninger om udvidelsen
Navn | Enhanced Outlook Web App |
ID | ejolmkmnegbamafoknjamlggejcikonk |
Officiel URL | https://chromewebstore.google.com/detail/enhanced-outlook-web-app/ejolmkmnegbamafoknjamlggejcikonk |
Beskrivelse | Improves the default behaviour of the Outlook Web App. |
Filstørrelse | 68.16 KB |
Antal Installationer | 137 |
Nuværende Version | 1.6.6 |
Senest Opdateret | 2024-02-09 |
Udgivelsesdato | 2023-09-09 |
Udvikler | Tobias Günther |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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:\/\/*\/*" ] } ] } |