Toggle YouTube Likes
Hides likes and dislikes until you want to see them. Rate videos without peer pressure. Special thanks to YouTuber 2Bough!
Toggle YouTube Likes là gì?
Toggle YouTube Likes là một tiện ích mở rộng Chrome được phát triển bởi Christopher Siegel, và tính năng chính của nó là "Hides likes and dislikes until you want to see them. Rate videos without peer pressure. Special thanks to YouTuber 2Bough!".
Ả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 Toggle YouTube Likes
Tải xuống các tệp mở rộng Toggle YouTube Likes 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
Special thanks to YouTuber 2Bough! Changelog: Version 1.2: - Now also hides the like/dislike bar above the like/dislike buttons. (31. March 2017) Version 1.1: - fixes issues with youtubes way of changing urls (30. March 2017)
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | gfmhigdbjknoapodiijfdfdkinmihfop |
URL Chính Thức | https://chrome.google.com/webstore/detail/toggle-youtube-likes/gfmhigdbjknoapodiijfdfdkinmihfop |
Mô tả | Hides likes and dislikes until you want to see them. Rate videos without peer pressure. Special thanks to YouTuber 2Bough! |
Kích Thước Tệp | 49.33 KB |
Số Lần Cài Đặt | 151 |
Phiên Bản Hiện Tại | 1.2 |
Cập Nhật Lần Cuối | 2017-04-23 |
Ngày Phát Hành | 2017-04-23 |
Đánh Giá | 3.73/5 Tổng số 15 Đánh Giá |
Nhà Phát Triển | Christopher Siegel |
[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", "manifest_version": 2, "name": "Toggle YouTube Likes", "description": "Hides likes and dislikes until you want to see them. Rate videos without peer pressure. Special thanks to YouTuber 2Bough!", "version": "1.2", "author": "Christopher Siegel", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "permissions": [ "activeTab", "https:\/\/ajax.googleapis.com\/" ], "background": { "scripts": [ "jquery.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/www.youtube.com\/*", "https:\/\/www.youtube.com\/*" ], "js": [ "jquery.js", "hide.js" ], "css": [ "main.css" ] } ], "web_accessible_resources": [ "script.js" ] } |