Hide Youtube Likes/Dislikes
Hides ratings information on Youtube videos.
Hide Youtube Likes/Dislikes là gì?
Hide Youtube Likes/Dislikes là một tiện ích mở rộng Chrome được phát triển bởi rmitaldev, và tính năng chính của nó là "Hides ratings information on Youtube videos.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Hide Youtube Likes/Dislikes
Tải xuống các tệp mở rộng Hide Youtube Likes/Dislikes dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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!
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Hide Youtube Likes/Dislikes |
ID | bndphnggikgjkhappgdnhijgnlafnfph |
URL Chính Thức | https://chromewebstore.google.com/detail/hide-youtube-likesdislike/bndphnggikgjkhappgdnhijgnlafnfph |
Mô tả | Hides ratings information on Youtube videos. |
Kích Thước Tệp | 73.07 KB |
Số Lần Cài Đặt | 641 |
Phiên Bản Hiện Tại | 1.0.2 |
Cập Nhật Lần Cuối | 2023-05-09 |
Ngày Phát Hành | 2020-02-24 |
Đánh Giá | 4.38/5 Tổng số 32 Đánh Giá |
Nhà Phát Triển | rmitaldev |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |