Enhanced Outlook Web App

Improves the default behaviour of the Outlook Web App.

什么是Enhanced Outlook Web App?

Enhanced Outlook Web App是由Tobias Günther开发的Chrome扩展程序,该扩展的主要功能是“Improves the default behaviour of the Outlook Web App.”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Enhanced Outlook Web App扩展crx文件

下载Enhanced Outlook Web App扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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]                    

扩展基本信息

名称 Enhanced Outlook Web App Enhanced Outlook Web App
ID ejolmkmnegbamafoknjamlggejcikonk
官方URL https://chromewebstore.google.com/detail/enhanced-outlook-web-app/ejolmkmnegbamafoknjamlggejcikonk
简介 Improves the default behaviour of the Outlook Web App.
文件大小 68.16 KB
安装次数 137
当前版本 1.6.6
更新时间 2024-02-09
上架时间 2023-09-09
开发者 Tobias Günther
电子邮箱 [email protected]
付费类型 free
支持的语言 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:\/\/*\/*"
            ]
        }
    ]
}