Enhanced Outlook Web App
Improves the default behaviour of the Outlook Web App.
Qu'est-ce que Enhanced Outlook Web App ?
Enhanced Outlook Web App est une extension Chrome développée par Tobias Günther, et sa fonction principale est "Improves the default behaviour of the Outlook Web App.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Enhanced Outlook Web App
Téléchargez les fichiers d'extension Enhanced Outlook Web App au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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]
Informations de Base sur l'Extension
Nom | Enhanced Outlook Web App |
ID | ejolmkmnegbamafoknjamlggejcikonk |
URL Officiel | https://chromewebstore.google.com/detail/enhanced-outlook-web-app/ejolmkmnegbamafoknjamlggejcikonk |
Description | Improves the default behaviour of the Outlook Web App. |
Taille du Fichier | 68.16 KB |
Nombre d'Installations | 137 |
Version Actuelle | 1.6.6 |
Dernière Mise à Jour | 2024-02-09 |
Date de Publication | 2023-09-09 |
Développeur | Tobias Günther |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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:\/\/*\/*" ] } ] } |