Recommendation Tweaker for YouTube

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

Cos'è Recommendation Tweaker for YouTube?

Recommendation Tweaker for YouTube è un'estensione di Chrome sviluppata da https://benedani.xyz, e la sua funzione principale è "Take the trash out! Get rid of the garbage recommendations with this highly customizable extension!".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Recommendation Tweaker for YouTube

Scarica i file di estensione Recommendation Tweaker for YouTube 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

                        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.                    

Informazioni di Base sull'Estensione

Nome Recommendation Tweaker for YouTube Recommendation Tweaker for YouTube
ID jmcdldlbcgjfppbblagddgjbnjajmgec
URL Ufficiale https://chromewebstore.google.com/detail/recommendation-tweaker-fo/jmcdldlbcgjfppbblagddgjbnjajmgec
Descrizione Take the trash out! Get rid of the garbage recommendations with this highly customizable extension!
Dimensione del File 80.81 KB
Conteggio Installazioni 269
Versione Corrente 2.1
Ultimo Aggiornamento 2023-09-26
Data di Pubblicazione 2021-04-30
Valutazione 3.33/5 Totale 9 Valutazioni
Sviluppatore https://benedani.xyz
Email [email protected]
Tipo di Pagamento free
URL della Pagina di Aiuto https://discord.gg/Zf2k7KK
Lingue Supportate 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"
        ]
    }
}