Recommendation Tweaker for YouTube
Take the trash out! Get rid of the garbage recommendations with this highly customizable extension!
Τι είναι το Recommendation Tweaker for YouTube;
Το Recommendation Tweaker for YouTube είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://benedani.xyz, και η κύρια λειτουργία του είναι "Take the trash out! Get rid of the garbage recommendations with this highly customizable extension!".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Recommendation Tweaker for YouTube
Λήψη αρχείων επέκτασης Recommendation Tweaker for YouTube σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Recommendation Tweaker for YouTube |
ID | jmcdldlbcgjfppbblagddgjbnjajmgec |
Επίσημο URL | https://chromewebstore.google.com/detail/recommendation-tweaker-fo/jmcdldlbcgjfppbblagddgjbnjajmgec |
Περιγραφή | Take the trash out! Get rid of the garbage recommendations with this highly customizable extension! |
Μέγεθος Αρχείου | 80.81 KB |
Αριθμός Εγκαταστάσεων | 269 |
Τρέχουσα Έκδοση | 2.1 |
Τελευταία Ενημέρωση | 2023-09-26 |
Ημερομηνία Δημοσίευσης | 2021-04-30 |
Αξιολόγηση | 3.33/5 Συνολικά 9 Αξιολογήσεις |
Προγραμματιστής | https://benedani.xyz |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Διεύθυνση URL της Σελίδας Βοήθειας | https://discord.gg/Zf2k7KK |
Υποστηριζόμενες Γλώσσες | 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" ] } } |