Material Design - Custom Dark Mode

Load custom css to set dark mode for some websites.

Material Design - Custom Dark Mode란 무엇입니까?

Material Design - Custom Dark Mode은(는) arnoutpullen에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Load custom css to set dark mode for some websites."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Material Design - Custom Dark Mode 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Material Design - Custom Dark Mode Material Design - Custom Dark Mode
ID gbenagmjagpjjpoeaigbmggjjmfieefn
공식 URL https://chromewebstore.google.com/detail/material-design-custom-da/gbenagmjagpjjpoeaigbmggjjmfieefn
설명 Load custom css to set dark mode for some websites.
파일 크기 1.24 MB
설치 횟수 32
현재 버전 1.0.1
최근 업데이트 2018-11-22
출시 날짜 2018-11-22
평점 5.00/5 총 6 개의 평점
개발자 arnoutpullen
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://github.com/ArnoutPullen/MaterialDarkModeExtension
지원되는 언어 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"
    }
}