Distraction Free YouTube

YouTube with less distraction!

Cos'è Distraction Free YouTube?

Distraction Free YouTube è un'estensione di Chrome sviluppata da developer.4af2c, e la sua funzione principale è "YouTube with less distraction!".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Distraction Free YouTube

Scarica i file di estensione Distraction Free YouTube 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

                        This extension blocks the home page, explore page, side bar, end screen video tile, and YouTube Shorts.

the project is open source: https://github.com/dwssv/distraction-free-youtube                    

Informazioni di Base sull'Estensione

Nome Distraction Free YouTube Distraction Free YouTube
ID cjfomfbgjppmmipmjdfpcjlilpjbahli
URL Ufficiale https://chromewebstore.google.com/detail/distraction-free-youtube/cjfomfbgjppmmipmjdfpcjlilpjbahli
Descrizione YouTube with less distraction!
Dimensione del File 484 KB
Conteggio Installazioni 31
Versione Corrente 1.0.2
Ultimo Aggiornamento 2022-05-14
Data di Pubblicazione 2022-03-27
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore developer.4af2c
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Distraction Free YouTube",
    "description": "YouTube with less distraction!",
    "version": "1.0.2",
    "manifest_version": 3,
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "permissions": [
        "declarativeNetRequest"
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "ruleset_1",
                "enabled": true,
                "path": "rules.json"
            }
        ]
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ]
}