YouTube Recommendations Filter
Hide videos you've already watched, old videos, and mix playlists from the Recommendations feed
Cos'è YouTube Recommendations Filter?
YouTube Recommendations Filter è un'estensione di Chrome sviluppata da Gary Chiu, e la sua funzione principale è "Hide videos you've already watched, old videos, and mix playlists from the Recommendations feed".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione YouTube Recommendations Filter
Scarica i file di estensione YouTube Recommendations Filter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | |
ID | pefndkngkakmmfnadcmnfnhemieaapbb |
URL Ufficiale | https://chrome.google.com/webstore/detail/youtube-recommendations-f/pefndkngkakmmfnadcmnfnhemieaapbb |
Descrizione | Hide videos you've already watched, old videos, and mix playlists from the Recommendations feed |
Dimensione del File | 23.32 KB |
Conteggio Installazioni | 87 |
Versione Corrente | 1.2.1 |
Ultimo Aggiornamento | 2021-11-10 |
Data di Pubblicazione | 2021-10-31 |
Valutazione | 2.33/5 Totale 3 Valutazioni |
Sviluppatore | Gary Chiu |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina della Politica sulla Privacy | https://pastebin.com/ypV3HQNi |
Lingue Supportate | 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" } } |