YouTube Distraction Disabler

Remove distracting video suggestions on YouTube.

Cos'è YouTube Distraction Disabler?

YouTube Distraction Disabler è un'estensione di Chrome sviluppata da kaiqi.liang, e la sua funzione principale è "Remove distracting video suggestions on YouTube.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione YouTube Distraction Disabler

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

                        Just spent an hour on YouTube but still haven't got to the video that you set out to watch? Wanted to learn something on YouTube but always get distracted by your recommended feed? Fear no more, "YouTube Distraction Disabler" is here to remove all of the unrelated videos on YouTube and only show you what you want.

Finally got some free time and want to deliberately procrastinate on YouTube? That's ok too, just simply click the extension icon and turn off one of the options that you choose to block. The options are "Home", "Related", "Comments" and "Notifications", which corresponds to your home feed, related videos next to the video you're currently watching, the comments down below as well as the notification bell.                    

Informazioni di Base sull'Estensione

Nome YouTube Distraction Disabler YouTube Distraction Disabler
ID klhmhijgenkomhcobnbdnjkkefbghfab
URL Ufficiale https://chromewebstore.google.com/detail/youtube-distraction-disab/klhmhijgenkomhcobnbdnjkkefbghfab
Descrizione Remove distracting video suggestions on YouTube.
Dimensione del File 12.64 KB
Conteggio Installazioni 163
Versione Corrente 0.0.4
Ultimo Aggiornamento 2023-01-18
Data di Pubblicazione 2020-12-07
Valutazione 5.00/5 Totale 5 Valutazioni
Sviluppatore kaiqi.liang
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/Kaiqi-Liang/YouTube-Distraction-Disabler
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Distraction Disabler",
    "version": "0.0.4",
    "description": "Remove distracting video suggestions on YouTube.",
    "manifest_version": 2,
    "page_action": {
        "default_icon": "assets\/logo.png"
    },
    "icons": {
        "128": "assets\/logo.png"
    },
    "permissions": [
        "contextMenus",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "extension.js"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "assets\/*.svg"
    ]
}