Enhanced Outlook Web App

Improves the default behaviour of the Outlook Web App.

Cos'è Enhanced Outlook Web App?

Enhanced Outlook Web App è un'estensione di Chrome sviluppata da Tobias Günther, e la sua funzione principale è "Improves the default behaviour of the Outlook Web App.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Enhanced Outlook Web App

Scarica i file di estensione Enhanced Outlook Web App in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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]                    

Informazioni di Base sull'Estensione

Nome Enhanced Outlook Web App Enhanced Outlook Web App
ID ejolmkmnegbamafoknjamlggejcikonk
URL Ufficiale https://chromewebstore.google.com/detail/enhanced-outlook-web-app/ejolmkmnegbamafoknjamlggejcikonk
Descrizione Improves the default behaviour of the Outlook Web App.
Dimensione del File 68.16 KB
Conteggio Installazioni 137
Versione Corrente 1.6.6
Ultimo Aggiornamento 2024-02-09
Data di Pubblicazione 2023-09-09
Sviluppatore Tobias Günther
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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:\/\/*\/*"
            ]
        }
    ]
}