Youtube zen mode

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

Cos'è Youtube zen mode?

Youtube zen mode è un'estensione di Chrome sviluppata da Adrien Coffre, e la sua funzione principale è "Improved layout, dark mode, removable recommendations and comment section.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Youtube zen mode

Scarica i file di estensione Youtube zen mode in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Youtube zen mode Youtube zen mode
ID aeblekonbpcjmpcmodmonjcgdcdemdig
URL Ufficiale https://chromewebstore.google.com/detail/youtube-zen-mode/aeblekonbpcjmpcmodmonjcgdcdemdig
Descrizione Improved layout, dark mode, removable recommendations and comment section.
Dimensione del File 24.7 KB
Conteggio Installazioni 24
Versione Corrente 0.0.1
Ultimo Aggiornamento 2020-04-15
Data di Pubblicazione 2020-04-15
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore Adrien Coffre
Tipo di Pagamento free
URL della Pagina di Aiuto https://github.com/Astrak/youtube-zen-mode
Lingue Supportate 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"
            ]
        }
    ]
}