YouTube Recommendations Filter
Hide videos you've already watched, old videos, and mix playlists from the Recommendations feed
Qu'est-ce que YouTube Recommendations Filter ?
YouTube Recommendations Filter est une extension Chrome développée par Gary Chiu, et sa fonction principale est "Hide videos you've already watched, old videos, and mix playlists from the Recommendations feed".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension YouTube Recommendations Filter
Téléchargez les fichiers d'extension YouTube Recommendations Filter 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
Tired of always seeing videos you've already watched in your YouTube Recommendations feed? Or being recommended videos from 11 years ago? No matter how often you click "Not interested", YouTube still keeps recommending you those videos? Do you never watch YouTube Mixes? Then this extension is for you! It will filter these videos out of your Recommendations feed, leaving you with relevant, fresh content. You can also configure how much of a video you need to watch, or how old a video must be, before they get filtered out. Does NOT affect videos in Subscriptions, Search, Explore, Library, History, etc. You can also open the Console (Option + CMD + J on Mac) to see the videos that were hidden. Source: https://github.com/garygcchiu/YouTube-Recommendations-Filter
Informations de Base sur l'Extension
Nom | |
ID | pefndkngkakmmfnadcmnfnhemieaapbb |
URL Officiel | https://chrome.google.com/webstore/detail/youtube-recommendations-f/pefndkngkakmmfnadcmnfnhemieaapbb |
Description | Hide videos you've already watched, old videos, and mix playlists from the Recommendations feed |
Taille du Fichier | 23.32 KB |
Nombre d'Installations | 87 |
Version Actuelle | 1.2.1 |
Dernière Mise à Jour | 2021-11-10 |
Date de Publication | 2021-10-31 |
Évaluation | 2.33/5 Total 3 Évaluations |
Développeur | Gary Chiu |
[email protected] | |
Type de Paiement | free |
URL de la Page de Politique de Confidentialité | https://pastebin.com/ypV3HQNi |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Recommendations Filter", "description": "Hide videos you've already watched, old videos, and mix playlists from the Recommendations feed", "version": "1.2.1", "manifest_version": 3, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "content-script.js" ], "run_at": "document_end" } ], "permissions": [ "storage" ], "action": { "default_popup": "interface.html" }, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" } } |