YouTube Distraction Killer

Remove distracting elements from YouTube's layout

Hvad er YouTube Distraction Killer?

YouTube Distraction Killer er en Chrome-udvidelse udviklet af nizioleque, og dens hovedfunktion er "Remove distracting elements from YouTube's layout".

Udvidelsesskærmbilleder

screenshot
screenshot

Download YouTube Distraction Killer-udvidelses-CRX-fil

Download YouTube Distraction Killer-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn YouTube Distraction Killer YouTube Distraction Killer
ID pahjidceabkifggkmokpmlmhoaiflaeh
Officiel URL https://chromewebstore.google.com/detail/youtube-distraction-kille/pahjidceabkifggkmokpmlmhoaiflaeh
Beskrivelse Remove distracting elements from YouTube's layout
Filstørrelse 28.3 KB
Antal Installationer 153
Nuværende Version 1.3
Senest Opdateret 2022-04-19
Udgivelsesdato 2022-04-19
Bedømmelse 4.75/5 Samlet 4 Bedømmelser
Udvikler nizioleque
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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
    }
}