Enhanced Outlook Web App

Improves the default behaviour of the Outlook Web App.

O que é Enhanced Outlook Web App?

Enhanced Outlook Web App é uma extensão do Chrome desenvolvida por Tobias Günther, e sua principal característica é "Improves the default behaviour of the Outlook Web App.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Enhanced Outlook Web App

Baixe arquivos de extensão Enhanced Outlook Web App no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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]                    

Informações Básicas da Extensão

Nome Enhanced Outlook Web App Enhanced Outlook Web App
ID ejolmkmnegbamafoknjamlggejcikonk
URL Oficial https://chromewebstore.google.com/detail/enhanced-outlook-web-app/ejolmkmnegbamafoknjamlggejcikonk
Descrição Improves the default behaviour of the Outlook Web App.
Tamanho do Arquivo 68.16 KB
Contagem de Instalações 137
Versão Atual 1.6.6
Última Atualização 2024-02-09
Data de Publicação 2023-09-09
Desenvolvedor Tobias Günther
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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:\/\/*\/*"
            ]
        }
    ]
}