YouTube Secret Dark Mode

Enable YouTube's secret dark mode

YouTube Secret Dark Mode란 무엇입니까?

YouTube Secret Dark Mode은(는) stemarcoh에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Enable YouTube's secret dark mode"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

YouTube Secret Dark Mode 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        UPDATE: As of 2-May-2017 this dark mode is now official in YouTube and you no longer need this extension! See here https://www.youtube.com/new

Enables YouTube's secret dark mode by setting a known cookie to enable server-side styling and a new page layout from YouTube itself. Unlike some other extensions, it does not change the HTML or style sheets after they are downloaded.

The first time it is enabled and you load youtube.com, it will display a desktop notification indicating the you'll need to reload the page, and enable Dark Mode in the settings menu to see it in dark mode.                    

확장 프로그램 기본 정보

이름 YouTube Secret Dark Mode YouTube Secret Dark Mode
ID dlhbodnkplchkjdcbchlbfbbjekjicoo
공식 URL https://chromewebstore.google.com/detail/youtube-secret-dark-mode/dlhbodnkplchkjdcbchlbfbbjekjicoo
설명 Enable YouTube's secret dark mode
파일 크기 101 KB
설치 횟수 354
현재 버전 1.1
최근 업데이트 2017-05-02
출시 날짜 2017-05-02
평점 2.78/5 총 9 개의 평점
개발자 stemarcoh
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Secret Dark Mode",
    "description": "Enable YouTube's secret dark mode",
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "author": "Steven Cohn",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "img\/icon19.png",
        "default_title": "YouTube Secret Dark Mode"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.youtube.com\/*",
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "cookies",
        "notifications",
        "tabs",
        "http:\/\/www.youtube.com\/*",
        "https:\/\/www.youtube.com\/*"
    ],
    "version": "1.1",
    "web_accessible_resources": [
        "img\/icon48.png"
    ]
}