YouTube Distraction Killer

Remove distracting elements from YouTube's layout

Cos'è YouTube Distraction Killer?

YouTube Distraction Killer è un'estensione di Chrome sviluppata da nizioleque, e la sua funzione principale è "Remove distracting elements from YouTube's layout".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione YouTube Distraction Killer

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

                        Do you find yourself watching cute kitten videos instead of educational content all the time?

Get rid of all the reccomendations, suggestions, comments and other tempting buttons!
Easily choose what is hidden using the options menu!

If you experience any issues, please feel free to email me with a bug report.                    

Informazioni di Base sull'Estensione

Nome YouTube Distraction Killer YouTube Distraction Killer
ID pahjidceabkifggkmokpmlmhoaiflaeh
URL Ufficiale https://chromewebstore.google.com/detail/youtube-distraction-kille/pahjidceabkifggkmokpmlmhoaiflaeh
Descrizione Remove distracting elements from YouTube's layout
Dimensione del File 28.3 KB
Conteggio Installazioni 153
Versione Corrente 1.3
Ultimo Aggiornamento 2022-04-19
Data di Pubblicazione 2022-04-19
Valutazione 4.75/5 Totale 4 Valutazioni
Sviluppatore nizioleque
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_extName__",
    "description": "__MSG_extDescription__",
    "version": "1.3",
    "default_locale": "en",
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "options\/options.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content\/content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_ui": {
        "page": "options\/options.html",
        "open_in_tab": false
    }
}