Material Design - Custom Dark Mode

Load custom css to set dark mode for some websites.

What is Material Design - Custom Dark Mode?

Material Design - Custom Dark Mode is a Chrome extension developed by arnoutpullen, and its main feature is "Load custom css to set dark mode for some websites.".

Extension Screenshots

screenshot
screenshot

Download Material Design - Custom Dark Mode Extension CRX File

Download Material Design - Custom 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

                        Custom dark mode for websites.

Included websites:
- tweakers.net
- 9gag.com

Todo:
- google.com / google.nl
- toggle darkmode for current site
- add custom css to current page                    

Extension Basic Information

Name Material Design - Custom Dark Mode Material Design - Custom Dark Mode
ID gbenagmjagpjjpoeaigbmggjjmfieefn
Official URL https://chromewebstore.google.com/detail/material-design-custom-da/gbenagmjagpjjpoeaigbmggjjmfieefn
Description Load custom css to set dark mode for some websites.
File Size 1.24 MB
Installation Count 32
Current Version 1.0.1
Last Updated 2018-11-22
Publish Date 2018-11-22
Rating 5.00/5 Total 6 Ratings
Developer arnoutpullen
Email [email protected]
Payment Type free
Help Page URL https://github.com/ArnoutPullen/MaterialDarkModeExtension
Supported Languages nl
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Material Design - Custom Dark Mode",
    "description": "Load custom css to set dark mode for some websites.",
    "version": "1.0.1",
    "author": "Arnout Pullen",
    "browser_action": {
        "default_icon": "assets\/material-icon-128-128.png",
        "default_title": "Dark Mode"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.tweakers.net\/*"
            ],
            "css": [
                "sites\/tweakers\/tweakers.css"
            ]
        },
        {
            "matches": [
                "https:\/\/9gag.com\/*"
            ],
            "css": [
                "sites\/9gag\/9gag.css"
            ]
        }
    ],
    "icons": {
        "16": "assets\/material-icon-16-16.png",
        "32": "assets\/material-icon-32-32.png",
        "48": "assets\/material-icon-48-48.png",
        "128": "assets\/material-icon-128-128.png"
    }
}