YouTube Distraction Disabler
Remove distracting video suggestions on YouTube.
Qu'est-ce que YouTube Distraction Disabler ?
YouTube Distraction Disabler est une extension Chrome développée par kaiqi.liang, et sa fonction principale est "Remove distracting video suggestions on YouTube.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension YouTube Distraction Disabler
Téléchargez les fichiers d'extension YouTube Distraction Disabler 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
Just spent an hour on YouTube but still haven't got to the video that you set out to watch? Wanted to learn something on YouTube but always get distracted by your recommended feed? Fear no more, "YouTube Distraction Disabler" is here to remove all of the unrelated videos on YouTube and only show you what you want. Finally got some free time and want to deliberately procrastinate on YouTube? That's ok too, just simply click the extension icon and turn off one of the options that you choose to block. The options are "Home", "Related", "Comments" and "Notifications", which corresponds to your home feed, related videos next to the video you're currently watching, the comments down below as well as the notification bell.
Informations de Base sur l'Extension
Nom | YouTube Distraction Disabler |
ID | klhmhijgenkomhcobnbdnjkkefbghfab |
URL Officiel | https://chromewebstore.google.com/detail/youtube-distraction-disab/klhmhijgenkomhcobnbdnjkkefbghfab |
Description | Remove distracting video suggestions on YouTube. |
Taille du Fichier | 12.64 KB |
Nombre d'Installations | 163 |
Version Actuelle | 0.0.4 |
Dernière Mise à Jour | 2023-01-18 |
Date de Publication | 2020-12-07 |
Évaluation | 5.00/5 Total 5 Évaluations |
Développeur | kaiqi.liang |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/Kaiqi-Liang/YouTube-Distraction-Disabler |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Distraction Disabler", "version": "0.0.4", "description": "Remove distracting video suggestions on YouTube.", "manifest_version": 2, "page_action": { "default_icon": "assets\/logo.png" }, "icons": { "128": "assets\/logo.png" }, "permissions": [ "contextMenus", "storage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "extension.js" ], "css": [ "style.css" ], "run_at": "document_end" } ], "web_accessible_resources": [ "assets\/*.svg" ] } |