Youtube Theme

Fast change between dark and light Youtube themes

Youtube Theme란 무엇입니까?

Youtube Theme은(는) Light Alex에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Fast change between dark and light Youtube themes"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Youtube Theme 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Fast change between dark and light YouTube design. Just in one click.                    

확장 프로그램 기본 정보

이름 Youtube Theme Youtube Theme
ID jkojliciihhmhfnioceoaahmmhhmhjdi
공식 URL https://chromewebstore.google.com/detail/youtube-theme/jkojliciihhmhfnioceoaahmmhhmhjdi
설명 Fast change between dark and light Youtube themes
파일 크기 42.94 KB
설치 횟수 8,961
현재 버전 1.0.4
최근 업데이트 2020-07-14
출시 날짜 2020-07-14
평점 4.49/5 총 45 개의 평점
개발자 Light Alex
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://addons.lightalex.com/?source=chrome_store
지원되는 언어 en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Youtube Theme",
    "short_name": "__MSG_description__",
    "description": "__MSG_description__",
    "default_locale": "en",
    "version": "1.0.4",
    "author": "Light Alex",
    "icons": {
        "48": "icons\/48.png",
        "64": "icons\/64.png",
        "128": "icons\/128.png",
        "256": "icons\/256.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/popup_dark_16.png",
            "24": "icons\/popup_dark_24.png",
            "32": "icons\/popup_dark_32.png"
        }
    },
    "background": {
        "scripts": [
            "files\/scripts\/background.js"
        ]
    },
    "permissions": [
        "tabs",
        "http:\/\/youtube.com\/*",
        "https:\/\/youtube.com\/*",
        "http:\/\/*.youtube.com\/*",
        "https:\/\/*.youtube.com\/*",
        "cookies",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/youtube.com\/*",
                "*:\/\/www.youtube.com\/*"
            ],
            "css": [
                "files\/styles\/main.css"
            ],
            "js": [
                "files\/scripts\/preload.js"
            ],
            "run_at": "document_start"
        }
    ]
}