Slack Dark Mode

Dark mode for Slack on Web

What is Slack Dark Mode?

Slack Dark Mode is a Chrome extension developed by The Half Blood Prince, and its main feature is "Dark mode for Slack on Web".

Extension Screenshots

screenshot
screenshot

Download Slack Dark Mode Extension CRX File

Download Slack Dark Mode extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Enables dark mode for Slack!                    

Extension Basic Information

Name Slack Dark Mode Slack Dark Mode
ID hlinfmkmlhfknejckgbepjfdipdadopm
Official URL https://chromewebstore.google.com/detail/slack-dark-mode/hlinfmkmlhfknejckgbepjfdipdadopm
Description Dark mode for Slack on Web
File Size 30 KB
Installation Count 18
Current Version 0.3.0
Last Updated 2019-07-13
Publish Date 2019-07-13
Developer The Half Blood Prince
Email [email protected]
Payment Type free
Extension Website https://github.com/tHBp/slack-dark-mode
Help Page URL https://github.com/tHBp/slack-dark-mode/issues
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Slack Dark Mode",
    "description": "Dark mode for Slack on Web",
    "version": "0.3.0",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "page_action": {
        "default_icon": "icons\/icon128.png",
        "default_title": "Slack Dark Mode"
    },
    "permissions": [
        "storage",
        "declarativeContent"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "web_accessible_resources": [
        "override.css"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.slack.com\/*"
            ],
            "js": [
                "theme.js"
            ],
            "run_at": "document_start"
        }
    ]
}