Youtube focus
Blocks Youtube recommendations so that you see only what you search.
Qu'est-ce que Youtube focus ?
Youtube focus est une extension Chrome développée par Priyanshu Nayan, et sa fonction principale est "Blocks Youtube recommendations so that you see only what you search.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Youtube focus
Téléchargez les fichiers d'extension Youtube focus 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
This extension removes all the recommended videos that you click to waste time, also it removes comments which i s not productive and also removes autoplay which makes you stick to the site and keep binge watching. Just search the videos you necessarily want to watch and that's it. That's what youtube was built for, that's what youtube should be used for.
Informations de Base sur l'Extension
Nom | Youtube focus |
ID | elnjcclakbcdhbljljckfokbpmcicemo |
URL Officiel | https://chromewebstore.google.com/detail/youtube-focus/elnjcclakbcdhbljljckfokbpmcicemo |
Description | Blocks Youtube recommendations so that you see only what you search. |
Taille du Fichier | 10.62 KB |
Nombre d'Installations | 40 |
Version Actuelle | 1.0.1 |
Dernière Mise à Jour | 2020-04-08 |
Date de Publication | 2020-04-08 |
Évaluation | 4.00/5 Total 4 Évaluations |
Développeur | Priyanshu Nayan |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/priyanshunayan/youtube-focus |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Youtube focus", "version": "1.0.1", "description": "Blocks Youtube recommendations so that you see only what you search.", "background": { "scripts": [ "background.js" ], "permissions": [ "storage", "tabs", "declarativeContent" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/", "*:\/\/youtube.com\/", "*:\/\/youtube.com\/watch*", "*:\/\/www.youtube.com\/watch*" ], "js": [ "content.js" ] } ], "page_action": { "default_popup": "popup.html" }, "default_icon": { "16": "images\/get_started16.png", "32": "images\/get_started32.png", "48": "images\/get_started48.png", "128": "images\/get_started128.png" }, "icons": { "16": "images\/get_started16.png", "32": "images\/get_started32.png", "48": "images\/get_started48.png", "128": "images\/get_started128.png" }, "manifest_version": 2 } |