YouTube Distraction Killer
Remove distracting elements from YouTube's layout
Qu'est-ce que YouTube Distraction Killer ?
YouTube Distraction Killer est une extension Chrome développée par nizioleque, et sa fonction principale est "Remove distracting elements from YouTube's layout".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension YouTube Distraction Killer
Téléchargez les fichiers d'extension YouTube Distraction Killer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | YouTube Distraction Killer |
ID | pahjidceabkifggkmokpmlmhoaiflaeh |
URL Officiel | https://chromewebstore.google.com/detail/youtube-distraction-kille/pahjidceabkifggkmokpmlmhoaiflaeh |
Description | Remove distracting elements from YouTube's layout |
Taille du Fichier | 28.3 KB |
Nombre d'Installations | 153 |
Version Actuelle | 1.3 |
Dernière Mise à Jour | 2022-04-19 |
Date de Publication | 2022-04-19 |
Évaluation | 4.75/5 Total 4 Évaluations |
Développeur | nizioleque |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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 } } |