Recommendation Tweaker for YouTube

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

Was ist Recommendation Tweaker for YouTube?

Recommendation Tweaker for YouTube ist eine Chrome-Erweiterung, die von https://benedani.xyz entwickelt wurde, und ihr Hauptmerkmal ist "Take the trash out! Get rid of the garbage recommendations with this highly customizable extension!".

Erweiterungsscreenshots

screenshot

Recommendation Tweaker for YouTube-Erweiterungs-CRX-Datei herunterladen

Laden Sie Recommendation Tweaker for YouTube-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Recommendation Tweaker for YouTube Recommendation Tweaker for YouTube
ID jmcdldlbcgjfppbblagddgjbnjajmgec
Offizielle URL https://chromewebstore.google.com/detail/recommendation-tweaker-fo/jmcdldlbcgjfppbblagddgjbnjajmgec
Beschreibung Take the trash out! Get rid of the garbage recommendations with this highly customizable extension!
Dateigröße 80.81 KB
Installationsanzahl 269
Aktuelle Version 2.1
Letztes Update 2023-09-26
Veröffentlichungsdatum 2021-04-30
Bewertung 3.33/5 Insgesamt 9 Bewertungen
Entwickler https://benedani.xyz
E-Mail [email protected]
Zahlungsart free
Hilfeseite URL https://discord.gg/Zf2k7KK
Unterstützte Sprachen 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"
        ]
    }
}