Hide Youtube Likes/Dislikes
Hides ratings information on Youtube videos.
Τι είναι το Hide Youtube Likes/Dislikes;
Το Hide Youtube Likes/Dislikes είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον rmitaldev, και η κύρια λειτουργία του είναι "Hides ratings information on Youtube videos.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Hide Youtube Likes/Dislikes
Λήψη αρχείων επέκτασης Hide Youtube Likes/Dislikes σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
UPDATE 1.0.2: Now handles Youtube's new sentiment bar, where dislikes are already hidden automatically. This extension gives users the option to hide the number of "likes" on a video and/or the entire sentiment bar on Youtube. Feel free to continue rating videos without worrying what other people think of it, or turn off that feature completely if you want to watch and enjoy videos without any pressure! NOTE: You will need to restart your browser for the changes to take effect! If you have any other trouble with this extension, please leave a comment in the support page and I will get to you as soon as I can. Thanks!
Βασικές Πληροφορίες Επέκτασης
Όνομα | Hide Youtube Likes/Dislikes |
ID | bndphnggikgjkhappgdnhijgnlafnfph |
Επίσημο URL | https://chromewebstore.google.com/detail/hide-youtube-likesdislike/bndphnggikgjkhappgdnhijgnlafnfph |
Περιγραφή | Hides ratings information on Youtube videos. |
Μέγεθος Αρχείου | 73.07 KB |
Αριθμός Εγκαταστάσεων | 641 |
Τρέχουσα Έκδοση | 1.0.2 |
Τελευταία Ενημέρωση | 2023-05-09 |
Ημερομηνία Δημοσίευσης | 2020-02-24 |
Αξιολόγηση | 4.38/5 Συνολικά 32 Αξιολογήσεις |
Προγραμματιστής | rmitaldev |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Hide Youtube Likes\/Dislikes", "version": "1.0.2", "description": "Hides ratings information on Youtube videos.", "manifest_version": 2, "permissions": [ "activeTab", "declarativeContent", "storage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "jquery.js", "arrive.js", "contentscript.js" ], "run_at": "document_start" } ], "page_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/ico_16.png", "32": "images\/ico_32.png", "48": "images\/ico_48.png", "128": "images\/ico_128.png" } }, "icons": { "16": "images\/ico_16.png", "32": "images\/ico_32.png", "48": "images\/ico_48.png", "128": "images\/ico_128.png" } } |