YouTube Distraction Killer

Remove distracting elements from YouTube's layout

Vad är YouTube Distraction Killer?

YouTube Distraction Killer är en Chrome-tillägg utvecklad av nizioleque, och dess huvudfunktion är "Remove distracting elements from YouTube's layout".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner YouTube Distraction Killer-förlängningens CRX-fil

Ladda ner YouTube Distraction Killer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn YouTube Distraction Killer YouTube Distraction Killer
ID pahjidceabkifggkmokpmlmhoaiflaeh
Officiell webbadress https://chromewebstore.google.com/detail/youtube-distraction-kille/pahjidceabkifggkmokpmlmhoaiflaeh
Beskrivning Remove distracting elements from YouTube's layout
Filstorlek 28.3 KB
Antal Installationer 153
Aktuell Version 1.3
Senast Uppdaterad 2022-04-19
Publiceringsdatum 2022-04-19
Betyg 4.75/5 Totalt 4 Betyg
Utvecklare nizioleque
E-post [email protected]
Betalningssätt free
Stödda Språk 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
    }
}