YouTube Dislikes Democratized
Dislike video and other know the reason why!
YouTube Dislikes Democratized là gì?
YouTube Dislikes Democratized là một tiện ích mở rộng Chrome được phát triển bởi https://democratizeddislikes.com, và tính năng chính của nó là "Dislike video and other know the reason why!".
Ả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 YouTube Dislikes Democratized
Tải xuống các tệp mở rộng YouTube Dislikes Democratized 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
YouTube Dislike Counter Show others that you dislike a video, and also give them the reason why! Compatible with other dislike count Chrome extensions Important Notice: Because the user base for this extension is relatively low as of this moment, you are not likely to see user ratings on most videos. Help us spread the word of this extension. As more people begin using it, we'll start getting better quality ratings on videos! Videos that do not have community generated ratings will not show any overlay (modify the visible page in any way). To test if the extension is working properly, try this test page: https://www.youtube.com/watch?v=kxOuG8jMIgI
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | YouTube Dislikes Democratized |
ID | pjhjaphpahenflpjgoddjdhidkbjlefo |
URL Chính Thức | https://chromewebstore.google.com/detail/youtube-dislikes-democrat/pjhjaphpahenflpjgoddjdhidkbjlefo |
Mô tả | Dislike video and other know the reason why! |
Kích Thước Tệp | 104 KB |
Số Lần Cài Đặt | 32 |
Phiên Bản Hiện Tại | 1.7.1 |
Cập Nhật Lần Cuối | 2022-01-08 |
Ngày Phát Hành | 2022-01-05 |
Đánh Giá | 1.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | https://democratizeddislikes.com |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://www.democratizeddislikes.com |
URL Trang Trợ Giúp | https://www.democratizeddislikes.com/contact.html |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "default_locale": "en", "name": "YouTube Dislikes Democratized", "description": "Dislike video and other know the reason why!", "version": "1.7.1", "icons": { "48": "images\/icon-48.png", "96": "images\/icon-96.png", "128": "images\/icon-128.png", "256": "images\/icon-256.png", "512": "images\/icon-512.png" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "js": [ "intercept_rating.js" ], "run_at": "document_end", "matches": [ "*:\/\/youtube.com\/*", "*:\/\/*.youtube.com\/*" ], "all_frames": false }, { "js": [ "populate_page.js" ], "run_at": "document_idle", "matches": [ "*:\/\/youtube.com\/*", "*:\/\/*.youtube.com\/*" ] } ], "action": { "default_icon": { "16": "images\/toolbar-icon-16.png", "19": "images\/toolbar-icon-19.png", "32": "images\/toolbar-icon-32.png", "38": "images\/toolbar-icon-38.png" } }, "host_permissions": [ "*:\/\/*.youtube.com\/*", "*:\/\/*.democratizeddislikes.com\/*" ], "permissions": [ "tabs", "storage" ] } |