YouTube Recommendations Filter

Hide videos you've already watched, old videos, and mix playlists from the Recommendations feed

Wat is YouTube Recommendations Filter?

YouTube Recommendations Filter is een Chrome-extensie ontwikkeld door Gary Chiu, en de belangrijkste functie is "Hide videos you've already watched, old videos, and mix playlists from the Recommendations feed".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie YouTube Recommendations Filter

Download YouTube Recommendations Filter-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam YouTube Recommendations Filter YouTube Recommendations Filter
ID pefndkngkakmmfnadcmnfnhemieaapbb
Officiële URL https://chrome.google.com/webstore/detail/youtube-recommendations-f/pefndkngkakmmfnadcmnfnhemieaapbb
Beschrijving Hide videos you've already watched, old videos, and mix playlists from the Recommendations feed
Bestandsgrootte 23.32 KB
Aantal Installaties 87
Huidige Versie 1.2.1
Laatst Bijgewerkt 2021-11-10
Publicatiedatum 2021-10-31
Beoordeling 2.33/5 Totaal 3 Beoordelingen
Ontwikkelaar Gary Chiu
E-mail [email protected]
Betalingswijze free
URL van de Privacybeleid Pagina https://pastebin.com/ypV3HQNi
Ondersteunde Talen 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"
    }
}