Unrecommender

An extension that filters YouTube recommendations based on your subscriptions and the channel you're watching.

Τι είναι το Unrecommender;

Το Unrecommender είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον memethyl, και η κύρια λειτουργία του είναι "An extension that filters YouTube recommendations based on your subscriptions and the channel you're watching.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Unrecommender

Λήψη αρχείων επέκτασης Unrecommender σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        https://github.com/memethyl/Unrecommender

The Unrecommender solves a problem that countless YouTube users have long griped about:

"How do I make recommendations not suck so much?"

No matter how hard you try, or how many times you hit "Not interested", the site just won't give you a break; it INSISTS that you should watch Vine compilations, or Fortnite videos, or any number of other things you don't care about.

The Unrecommender solves this problem in two ways:
1. When watching videos, it hides anything that isn't from the channel you're watching. For example, if you were watching a Tom Scott video, it'd only show videos from Tom Scott, and so on.
2. When on the homepage (or trending page), it hides anything from any channel not on your subscription list.

You also don't have to fuss around with blacklists to make it work: just install it, and it does the rest for you.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Unrecommender Unrecommender
ID ojejjpodljdngfmhbjfoplkckcekflae
Επίσημο URL https://chromewebstore.google.com/detail/unrecommender/ojejjpodljdngfmhbjfoplkckcekflae
Περιγραφή An extension that filters YouTube recommendations based on your subscriptions and the channel you're watching.
Μέγεθος Αρχείου 62.77 KB
Αριθμός Εγκαταστάσεων 111
Τρέχουσα Έκδοση 2.0.8
Τελευταία Ενημέρωση 2021-02-12
Ημερομηνία Δημοσίευσης 2020-03-31
Αξιολόγηση 4.50/5 Συνολικά 4 Αξιολογήσεις
Προγραμματιστής memethyl
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Unrecommender",
    "description": "An extension that filters YouTube recommendations based on your subscriptions and the channel you're watching.",
    "version": "2.0.8",
    "browser_action": {
        "default_icon": {
            "16": "img\/icon_16.png",
            "32": "img\/icon_32.png"
        },
        "default_title": "Unrecommender"
    },
    "permissions": [],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "run_at": "document_start",
            "js": [
                "js\/jquery-3.5.1.min.js",
                "js\/main.js"
            ]
        }
    ],
    "icons": {
        "16": "img\/icon_16.png",
        "32": "img\/icon_32.png",
        "64": "img\/icon_64.png",
        "128": "img\/icon_128.png"
    }
}