Dark Mode for Outlook

A better dark theme for Microsoft Outlook.

Was ist Dark Mode for Outlook?

Dark Mode for Outlook ist eine Chrome-Erweiterung, die von https://johng.io entwickelt wurde, und ihr Hauptmerkmal ist "A better dark theme for Microsoft Outlook.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Dark Mode for Outlook-Erweiterungs-CRX-Datei herunterladen

Laden Sie Dark Mode for Outlook-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        🔶 Description 🔶

A browser extension/add-on that applies a better dark theme to Microsoft Outlook and removes ads. Available for Chrome, Firefox, Edge, and Opera, with partial support for Firefox mobile!.

Styles are automatically applied to known Outlook URLs. If your Outlook exchange server is running on a custom domain, please add this domain in the extension options.

🔶 Privacy 🔶

This extension does not collect or transmit any personal information. Please see below for an explanation of the permissions required by this extension.

🔸 Required Permissions 🔸

Access to any site on the following domains is required so we can apply custom styles:
▸ http(s)://outlook.live.com/
▸ http(s)://outlook.office.com/
▸ http(s)://outlook.office365.com/
▸ http(s)://support.office.live.com/
Access to storage is required so we can save extension settings.

🔸 Optional Permissions 🔸

These permissions are requested only when they are needed:
▸ tabs: Access to open tabs is required if you are using the Custom Domains feature. This is so we can check if any open tabs match the custom domains you specified
▸ http(s)://*/: Access to 'any site' is required if you are using the Custom Domains feature. This is so we can apply styles to any domain you specify. Note that the extension does not have access to all sites. It will only request permissions for the specific custom domains you add.

🔶 Reporting Issues 🔶

Translations needed! If you know another language and want to help out, please create an issue with details here: https://github.com/jerboa88/dark-mode-for-outlook/issues.

If you encounter any problems while using the extension, please create an issue or create a pull request yourself to fix the issue.

I try to fix the extension as soon as possible when Outlook makes breaking changes, but keep in mind it may take some time for me to fit the work into my schedule and make all the changes that need to be made. Thanks for your patience 🙂.

🔶 License 🔶

This project is licensed under the MIT License. See the license file for details. Outlook is a trademark of Microsoft and this project is not affiliated with or endorsed by Microsoft in any way.                    

Grundlegende Informationen zur Erweiterung

Name Dark Mode for Outlook Dark Mode for Outlook
ID kjfbefcenipnnpbcbbklcidpjiamlcpl
Offizielle URL https://chromewebstore.google.com/detail/dark-mode-for-outlook/kjfbefcenipnnpbcbbklcidpjiamlcpl
Beschreibung A better dark theme for Microsoft Outlook.
Dateigröße 34.11 KB
Installationsanzahl 621
Aktuelle Version 3.6
Letztes Update 2023-08-25
Veröffentlichungsdatum 2020-04-30
Bewertung 4.00/5 Insgesamt 6 Bewertungen
Entwickler https://johng.io
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://johng.io/projects/dark-mode-for-outlook/
Hilfeseite URL https://github.com/jerboa88/dark-mode-for-outlook
Unterstützte Sprachen en,es
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extensionName__",
    "short_name": "__MSG_extensionShortName__",
    "description": "__MSG_extensionDescription__",
    "version": "3.6",
    "default_locale": "en",
    "icons": {
        "128": "img\/128.png",
        "64": "img\/64.png",
        "48": "img\/48.png",
        "32": "img\/32.png",
        "16": "img\/16.png"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/outlook.live.com\/*",
                "*:\/\/outlook.office.com\/*",
                "*:\/\/outlook.office365.com\/*",
                "*:\/\/support.office.live.com\/*"
            ],
            "css": [
                "css\/main.css"
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/support.office.live.com\/*"
            ],
            "css": [
                "css\/help.css"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "storage"
    ],
    "optional_permissions": [
        "tabs",
        "*:\/\/*\/"
    ],
    "web_accessible_resources": [
        "css\/compose.css"
    ],
    "manifest_version": 2
}