Lemonade
This chrome extension displays a Youtube video dislike count
Lemonade là gì?
Lemonade là một tiện ích mở rộng Chrome được phát triển bởi Pleasant Tech, và tính năng chính của nó là "This chrome extension displays a Youtube video dislike count".
Ả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 Lemonade
Tải xuống các tệp mở rộng Lemonade 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
This extension adds back the youtube dislike count , the youtube dislike count is the first impression of a video, it's our right to be able to view it, this extension allows you do just that
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | mhhpfoogkccfpmgelmekhghoglpganhp |
URL Chính Thức | https://chrome.google.com/webstore/detail/lemonade/mhhpfoogkccfpmgelmekhghoglpganhp |
Mô tả | This chrome extension displays a Youtube video dislike count |
Kích Thước Tệp | 23.04 KB |
Số Lần Cài Đặt | 54 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2022-01-01 |
Ngày Phát Hành | 2022-01-01 |
Đánh Giá | 5.00/5 Tổng số 7 Đánh Giá |
Nhà Phát Triển | Pleasant Tech |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Trợ Giúp | https://twitter.com/pleasantech_ |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "action": { "default_popup": "popup.html", "default_icon": { "16": "logo16.png", "32": "logo32.png", "48": "logo48.png", "128": "logo128.png" } }, "icons": { "16": "logo16.png", "32": "logo32.png", "48": "logo48.png", "128": "logo128.png" }, "background": { "service_worker": "ryd.background.js" }, "content_scripts": [ { "css": [ "content-style.css" ], "exclude_matches": [ "*:\/\/*.music.youtube.com\/*" ], "js": [ "ryd.content-script.js" ], "matches": [ "*:\/\/youtube.com\/*", "*:\/\/www.youtube.com\/*", "*:\/\/m.youtube.com\/*" ] } ], "externally_connectable": { "matches": [ "*:\/\/*.youtube.com\/*" ] }, "host_permissions": [ "*:\/\/*.youtube.com\/*" ], "name": "Lemonade", "description": "This chrome extension displays a Youtube video dislike count", "version": "1.0", "manifest_version": 3, "permissions": [ "storage" ], "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "web_accessible_resources": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "resources": [ "ryd.script.js" ] } ] } |