Enhanced Outlook Web App

Improves the default behaviour of the Outlook Web App.

Τι είναι το Enhanced Outlook Web App;

Το Enhanced Outlook Web App είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Tobias Günther, και η κύρια λειτουργία του είναι "Improves the default behaviour of the Outlook Web App.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Enhanced Outlook Web App

Λήψη αρχείων επέκτασης 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:\/\/*\/*"
            ]
        }
    ]
}