Dark Theme for YouTube™

A Dark and Smooth Theme for YouTube

Dark Theme for YouTube™란 무엇입니까?

Dark Theme for YouTube™은(는) Lynn에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A Dark and Smooth Theme for YouTube"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Dark Theme for YouTube™ 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension makes YouTube website look much easier on your eyes at night time. It adds a nice dark theme to YouTube with a smooth black background.

a. Automatically sets a dark theme for all YouTube pages.
b. Has an in-page switch button (at top-right corner in YouTube website) to turn the dark theme ON or OFF.
c. The addon has two dark themes. Theme (A) uses standard CSS techniques to darken the YouTube page. Theme (B) uses CSS filters to do this job. (use the in-page button to switch between these two themes).

To report bugs, please visit addon's homepage (https://mybrowseraddon.com/youtube-dark.html) and fill the bug report form.                    

확장 프로그램 기본 정보

이름 Dark Theme for YouTube™ Dark Theme for YouTube™
ID noaomggoeegeonccimekobnhkikoapog
공식 URL https://chromewebstore.google.com/detail/dark-theme-for-youtube/noaomggoeegeonccimekobnhkikoapog
설명 A Dark and Smooth Theme for YouTube
파일 크기 36.26 KB
설치 횟수 20,000
현재 버전 0.2.0
최근 업데이트 2022-04-22
출시 날짜 2018-07-29
평점 3.54/5 총 135 개의 평점
개발자 Lynn
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://mybrowseraddon.com/youtube-dark.html
도움말 페이지 URL https://mybrowseraddon.com/youtube-dark.html
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.2.0",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "short_name": "youtube-dark",
    "name": "Dark Theme for YouTube\u2122",
    "host_permissions": [
        "*:\/\/*.youtube.com\/*"
    ],
    "description": "A Dark and Smooth Theme for YouTube",
    "homepage_url": "https:\/\/mybrowseraddon.com\/youtube-dark.html",
    "commands": {
        "_execute_action": []
    },
    "background": {
        "service_worker": "background.js"
    },
    "web_accessible_resources": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "resources": [
                "data\/content_script\/youtube-dark-theme-inject-filter.css",
                "data\/content_script\/youtube-dark-theme-inject-normal.css"
            ]
        }
    ],
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "data\/content_script\/inject.js"
            ],
            "css": [
                "data\/content_script\/inject.css"
            ]
        }
    ],
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png"
    }
}