KellyC Show YouTube Dislikes
Show dislikes on Youtube. Return dislikes and ratio bar. Classic ratio bar, controll data sources via options
KellyC Show YouTube Dislikes là gì?
KellyC Show YouTube Dislikes là một tiện ích mở rộng Chrome được phát triển bởi https://kelly.catface.ru, và tính năng chính của nó là "Show dislikes on Youtube. Return dislikes and ratio bar. Classic ratio bar, controll data sources via options".
Ả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 KellyC Show YouTube Dislikes
Tải xuống các tệp mở rộng KellyC Show YouTube 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
NOTE : ** Extension can be disabled after update \ install by default - check is enabled - then restart browser if not work ** Youtube has removed dislike statistics. This extension return this functionality back. My project is similar to other ones, but with some features that was important personaly for me : - Support select of "dislikes" data providers, so you can clearly see where "likes\dislikes" stat was loaded from. You can find description of data sources in extension settings. You can see data source directly on youtube page if option [Addition oprions] -> [Display data source in ratio bar popup] is activated (active by default) - Custom ratio bar that can be disabled or recolored from extension settings - Partly compatible with some mobile browsers (support depends on browser version and manifest v3 compatibility). Currently supported data providers : - YouTube metadata parsing (used by default, helps to detect original likes count \ is video votes closed) - API by Return YouTube Dislikes project (https://returnyoutubedislike.com/) - active by default. Currently most effective. Used archived youtube data and votes from users of extensions \ services that support this API. - API by SponsorBlock (https://wiki.sponsor.ajay.app/w/API_Docs/Ratings Documentation) - Currently disabled by default. Not many extensions used it so there is almost zero data for current time. - API by CatFace (my server, currently used as small historical data archive) Extension source code \ support is available on GitHub : https://github.com/NC22/KellyC-Return-YouTube-Dislikes How extension count "dislikes" and is this results accurate? https://github.com/NC22/KellyC-Return-YouTube-Dislikes/wiki/How-extension-count-%22dislikes%22-and-is-this-results-accurate%3F
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | KellyC Show YouTube Dislikes |
ID | gmdihkflccbodfkfioifolcijgahdgaf |
URL Chính Thức | https://chromewebstore.google.com/detail/kellyc-show-youtube-disli/gmdihkflccbodfkfioifolcijgahdgaf |
Mô tả | Show dislikes on Youtube. Return dislikes and ratio bar. Classic ratio bar, controll data sources via options |
Kích Thước Tệp | 150 KB |
Số Lần Cài Đặt | 52,562 |
Phiên Bản Hiện Tại | 1.1.6.6 |
Cập Nhật Lần Cuối | 2024-03-02 |
Ngày Phát Hành | 2021-11-20 |
Đánh Giá | 4.49/5 Tổng số 230 Đánh Giá |
Nhà Phát Triển | https://kelly.catface.ru |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://catface.ru/way/return_youtube_dislikes/ |
URL Trang Trợ Giúp | https://github.com/NC22/KellyC-Return-YouTube-Dislikes |
URL Trang Chính Sách Bảo Mật | https://github.com/NC22/KellyC-Return-YouTube-Dislikes/wiki/Privacy-Policy |
Ngôn Ngữ Được Hỗ Trợ | en,ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "content_scripts": [ { "js": [ "lib\/kellyTools.js", "lib\/kellyTooltip.js", "lib\/kellyStorage.js", "lib\/kellyShowRate.js", "lib\/api\/youtubeMeta.js", "lib\/api\/catface.js", "lib\/api\/sponsorBlock.js", "lib\/api\/ryda.js", "init\/init.js" ], "matches": [ "*:\/\/youtube.com\/*", "*:\/\/www.youtube.com\/*", "*:\/\/m.youtube.com\/*" ] } ], "host_permissions": [ "*:\/\/youtube.com\/*", "*:\/\/www.youtube.com\/*", "*:\/\/m.youtube.com\/*", "*:\/\/sponsor.ajay.app\/*", "*:\/\/returnyoutubedislikeapi.com\/*", "*:\/\/catface.ru\/*" ], "manifest_version": 3, "version": "1.1.6.6", "name": "KellyC Show YouTube Dislikes", "description": "__MSG_ext_description__", "icons": { "32": "env\/img\/icon32x32.png", "44": "env\/img\/icon44x44.png", "128": "env\/img\/icon128x128.png" }, "author": "nradiowave", "default_locale": "en", "permissions": [ "storage" ], "background": { "service_worker": "lib\/kellyDispetcher.js" }, "options_ui": { "page": "env\/page\/options.html", "open_in_tab": true }, "action": { "default_popup": "env\/page\/popup.html", "default_icon": { "32": "env\/img\/icon32x32.png" } }, "web_accessible_resources": [ { "resources": [ "enc\/css\/*.css" ], "matches": [], "extension_ids": [] } ] } |