Enhanced Outlook Web App

Improves the default behaviour of the Outlook Web App.

Enhanced Outlook Web App là gì?

Enhanced Outlook Web App là một tiện ích mở rộng Chrome được phát triển bởi Tobias Günther, và tính năng chính của nó là "Improves the default behaviour of the Outlook Web App.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Enhanced Outlook Web App

Tải xuống các tệp mở rộng Enhanced Outlook Web App dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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]                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Enhanced Outlook Web App Enhanced Outlook Web App
ID ejolmkmnegbamafoknjamlggejcikonk
URL Chính Thức https://chromewebstore.google.com/detail/enhanced-outlook-web-app/ejolmkmnegbamafoknjamlggejcikonk
Mô tả Improves the default behaviour of the Outlook Web App.
Kích Thước Tệp 68.16 KB
Số Lần Cài Đặt 137
Phiên Bản Hiện Tại 1.6.6
Cập Nhật Lần Cuối 2024-02-09
Ngày Phát Hành 2023-09-09
Nhà Phát Triển Tobias Günther
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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:\/\/*\/*"
            ]
        }
    ]
}