Youtube zen mode

Improved layout, dark mode, removable recommendations and comment section.

Co to jest Youtube zen mode?

Youtube zen mode to rozszerzenie Chrome opracowane przez Adrien Coffre, a jego główną funkcją jest „Improved layout, dark mode, removable recommendations and comment section.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Youtube zen mode

Pobierz pliki rozszerzeń Youtube zen mode 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

                        Allows to tailor hidden sections (comments, recommendations) and implements a dark mode                    

Podstawowe informacje o rozszerzeniu

Nazwa Youtube zen mode Youtube zen mode
ID aeblekonbpcjmpcmodmonjcgdcdemdig
Oficjalny URL https://chromewebstore.google.com/detail/youtube-zen-mode/aeblekonbpcjmpcmodmonjcgdcdemdig
Opis Improved layout, dark mode, removable recommendations and comment section.
Rozmiar pliku 24.7 KB
Liczba instalacji 24
Aktualna Wersja 0.0.1
Ostatnia Aktualizacja 2020-04-15
Data Publikacji 2020-04-15
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper Adrien Coffre
Typ Płatności free
Adres URL Strony Pomocy https://github.com/Astrak/youtube-zen-mode
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube zen mode",
    "version": "0.0.1",
    "description": "Improved layout, dark mode, removable recommendations and comment section.",
    "manifest_version": 2,
    "browser_action": {
        "default_popup": "popup\/popup.html",
        "default_icon": {
            "16": "images\/yzm16.png",
            "32": "images\/yzm32.png",
            "48": "images\/yzm48.png",
            "128": "images\/yzm128.png"
        }
    },
    "icons": {
        "16": "images\/yzm16.png",
        "32": "images\/yzm32.png",
        "48": "images\/yzm48.png",
        "128": "images\/yzm128.png"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "all_frames": true,
            "js": [
                "content\/content.js"
            ],
            "css": [
                "content\/content.css"
            ]
        }
    ]
}