YouTube Recommendations Filter

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

O que é YouTube Recommendations Filter?

YouTube Recommendations Filter é uma extensão do Chrome desenvolvida por Gary Chiu, e sua principal característica é "Hide videos you've already watched, old videos, and mix playlists from the Recommendations feed".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão YouTube Recommendations Filter

Baixe arquivos de extensão YouTube Recommendations Filter no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome YouTube Recommendations Filter YouTube Recommendations Filter
ID pefndkngkakmmfnadcmnfnhemieaapbb
URL Oficial https://chrome.google.com/webstore/detail/youtube-recommendations-f/pefndkngkakmmfnadcmnfnhemieaapbb
Descrição Hide videos you've already watched, old videos, and mix playlists from the Recommendations feed
Tamanho do Arquivo 23.32 KB
Contagem de Instalações 87
Versão Atual 1.2.1
Última Atualização 2021-11-10
Data de Publicação 2021-10-31
Classificação 2.33/5 Total de 3 Avaliações
Desenvolvedor Gary Chiu
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade https://pastebin.com/ypV3HQNi
Idiomas Suportados 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"
    }
}