Youtube Theme

Fast change between dark and light Youtube themes

Co to jest Youtube Theme?

Youtube Theme to rozszerzenie Chrome opracowane przez Light Alex, a jego główną funkcją jest „Fast change between dark and light Youtube themes”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Youtube Theme

Pobierz pliki rozszerzeń Youtube Theme w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Youtube Theme Youtube Theme
ID jkojliciihhmhfnioceoaahmmhhmhjdi
Oficjalny URL https://chromewebstore.google.com/detail/youtube-theme/jkojliciihhmhfnioceoaahmmhhmhjdi
Opis Fast change between dark and light Youtube themes
Rozmiar pliku 42.94 KB
Liczba instalacji 8,961
Aktualna Wersja 1.0.4
Ostatnia Aktualizacja 2020-07-14
Data Publikacji 2020-07-14
Ocena 4.49/5 Łącznie 45 Oceny
Deweloper Light Alex
E-mail addons@lightalex.com
Typ Płatności free
Strona Rozszerzenia https://addons.lightalex.com/?source=chrome_store
Obsługiwane Języki 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"
        }
    ]
}