Recommendation Tweaker for YouTube

Take the trash out! Get rid of the garbage recommendations with this highly customizable extension!

O que é Recommendation Tweaker for YouTube?

Recommendation Tweaker for YouTube é uma extensão do Chrome desenvolvida por https://benedani.xyz, e sua principal característica é "Take the trash out! Get rid of the garbage recommendations with this highly customizable extension!".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Recommendation Tweaker for YouTube

Baixe arquivos de extensão Recommendation Tweaker for YouTube 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

                        An open source, purely client-side browser extension that gives you control over YouTube's feed! Get rid of videos you've already seen, useless mixes and everything else you don't like!

v2.1 notes:
Fixed a bug where an invisible "video" that didn't even exist would cause the extension to error internally. It makes perfect sense, don't question it.                    

Informações Básicas da Extensão

Nome Recommendation Tweaker for YouTube Recommendation Tweaker for YouTube
ID jmcdldlbcgjfppbblagddgjbnjajmgec
URL Oficial https://chromewebstore.google.com/detail/recommendation-tweaker-fo/jmcdldlbcgjfppbblagddgjbnjajmgec
Descrição Take the trash out! Get rid of the garbage recommendations with this highly customizable extension!
Tamanho do Arquivo 80.81 KB
Contagem de Instalações 269
Versão Atual 2.1
Última Atualização 2023-09-26
Data de Publicação 2021-04-30
Classificação 3.33/5 Total de 9 Avaliações
Desenvolvedor https://benedani.xyz
Email [email protected]
Tipo de Pagamento free
URL da Página de Ajuda https://discord.gg/Zf2k7KK
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Recommendation Tweaker for YouTube",
    "version": "2.1",
    "description": "Take the trash out! Get rid of the garbage recommendations with this highly customizable extension!",
    "author": "Benedani - https:\/\/benedani.xyz\/",
    "permissions": [
        "storage"
    ],
    "icons": {
        "32": "icons\/32.png",
        "64": "icons\/64.png",
        "96": "icons\/96.png",
        "192": "icons\/192.png",
        "384": "icons\/384.png"
    },
    "browser_action": {
        "default_icon": {
            "32": "icons\/32.png",
            "64": "icons\/64.png",
            "96": "icons\/96.png",
            "192": "icons\/192.png",
            "384": "icons\/384.png"
        },
        "default_title": "Recommendation Tweaker for YouTube",
        "default_popup": "settings\/a.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "runtweak.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "storage.js"
        ]
    }
}