YouTube Distraction Killer
Remove distracting elements from YouTube's layout
Wat is YouTube Distraction Killer?
YouTube Distraction Killer is een Chrome-extensie ontwikkeld door nizioleque, en de belangrijkste functie is "Remove distracting elements from YouTube's layout".
Extensie Screenshots
Download het CRX-bestand van de extensie YouTube Distraction Killer
Download YouTube Distraction Killer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | YouTube Distraction Killer |
ID | pahjidceabkifggkmokpmlmhoaiflaeh |
Officiële URL | https://chromewebstore.google.com/detail/youtube-distraction-kille/pahjidceabkifggkmokpmlmhoaiflaeh |
Beschrijving | Remove distracting elements from YouTube's layout |
Bestandsgrootte | 28.3 KB |
Aantal Installaties | 153 |
Huidige Versie | 1.3 |
Laatst Bijgewerkt | 2022-04-19 |
Publicatiedatum | 2022-04-19 |
Beoordeling | 4.75/5 Totaal 4 Beoordelingen |
Ontwikkelaar | nizioleque |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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 } } |