Return YouTube Dislikes Counter
Returning the ability to see the number of dislikes
Return YouTube Dislikes Counter là gì?
Return YouTube Dislikes Counter là một tiện ích mở rộng Chrome được phát triển bởi Kronus, và tính năng chính của nó là "Returning the ability to see the number of dislikes".
Ả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 Return YouTube Dislikes Counter
Tải xuống các tệp mở rộng Return YouTube Dislikes Counter 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
The extension returns the ability to see how many people have put dislikes.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | oljgiamaflelpmdlmdjpooahpmiobclo |
URL Chính Thức | https://chrome.google.com/webstore/detail/return-youtube-dislikes-c/oljgiamaflelpmdlmdjpooahpmiobclo |
Mô tả | Returning the ability to see the number of dislikes |
Kích Thước Tệp | 16.96 KB |
Số Lần Cài Đặt | 161 |
Phiên Bản Hiện Tại | 1.2 |
Cập Nhật Lần Cuối | 2021-12-23 |
Ngày Phát Hành | 2021-11-30 |
Nhà Phát Triển | Kronus |
[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": "Return YouTube Dislikes Counter", "description": "Returning the ability to see the number of dislikes", "version": "1.2", "manifest_version": 3, "background": { "service_worker": "ryd.background.js" }, "icons": { "64": "icons\/icon64.png", "128": "icons\/icon128.png" }, "host_permissions": [ "*:\/\/*.youtube.com\/*" ], "permissions": [ "storage" ], "action": { "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/youtube.com\/*", "*:\/\/www.youtube.com\/*", "*:\/\/m.youtube.com\/*" ], "exclude_matches": [ "*:\/\/*.music.youtube.com\/*" ], "js": [ "bundled-content-script.js" ], "css": [ "content-style.css" ] } ], "externally_connectable": { "matches": [ "*:\/\/*.youtube.com\/*" ] }, "web_accessible_resources": [ { "resources": [ "ryd.script.js" ], "matches": [ "*:\/\/*.youtube.com\/*" ] } ] } |