ZenTube

Zen mode for YouTube

Cos'è ZenTube?

ZenTube è un'estensione di Chrome sviluppata da inversepolarity, e la sua funzione principale è "Zen mode for YouTube".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione ZenTube

Scarica i file di estensione ZenTube 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

                        Consume YouTube more productively by making it less addictive/distracting. Hide unncessary elements or mix-n-match which elements to show, get your peace of mind back! Extension is completely open source.                    

Informazioni di Base sull'Estensione

Nome ZenTube ZenTube
ID ghfgfebinnjlnbidclplakjfielgpokd
URL Ufficiale https://chromewebstore.google.com/detail/zentube/ghfgfebinnjlnbidclplakjfielgpokd
Descrizione Zen mode for YouTube
Dimensione del File 101 KB
Conteggio Installazioni 81
Versione Corrente 1.1.4
Ultimo Aggiornamento 2023-04-20
Data di Pubblicazione 2022-09-12
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore inversepolarity
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/inversepolarity/ZenTube
URL della Pagina di Aiuto https://evenzero.in/experiments
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Zen mode for YouTube",
    "manifest_version": 3,
    "name": "ZenTube",
    "version": "1.1.4",
    "author": "surajsharma",
    "homepage_url": "https:\/\/evenzero.in",
    "icons": {
        "144": "icons\/favicon4_144.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "browser-polyfill.js",
                "defaultSettings.js",
                "contentscript.js",
                "emoji.js"
            ],
            "run_at": "document_start"
        }
    ],
    "action": {
        "default_icon": "icons\/favicon4_144.png",
        "default_title": "Zen Mode for Youtube",
        "default_popup": "options\/options.html"
    },
    "permissions": [
        "storage",
        "tabs",
        "scripting",
        "activeTab"
    ],
    "host_permissions": [
        "*:\/\/*.youtube.com\/*"
    ]
}