ytb not-interested button
add do-not-interest button to video.
ytb not-interested button là gì?
ytb not-interested button là một tiện ích mở rộng Chrome được phát triển bởi huhuang03, và tính năng chính của nó là "add do-not-interest button to video.".
Ả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 ytb not-interested button
Tải xuống các tệp mở rộng ytb not-interested button 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
It's boring when you want click the not-interested button in youtube website. You need click the menu button, wait for the popup menu and the click the not-interested button. This extension is for add the not-interested button in the first level. So you can quick click and save time. Please notice: you need logined to ytb to let this extension work. Because this extension do the *I not interested* behavior, so need ytb logined. The source is at https://github.com/huhuang03/ytb_dni. If you think it's useful, please conside buy me a coffe https://www.buymeacoffee.com/huhuang03
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | ytb not-interested button |
ID | okfiigkfppbpfjaiffmllkkfbpdnhofn |
URL Chính Thức | https://chromewebstore.google.com/detail/ytb-not-interested-button/okfiigkfppbpfjaiffmllkkfbpdnhofn |
Mô tả | add do-not-interest button to video. |
Kích Thước Tệp | 20.93 KB |
Số Lần Cài Đặt | 1,512 |
Phiên Bản Hiện Tại | 0.1.4 |
Cập Nhật Lần Cuối | 2024-01-20 |
Ngày Phát Hành | 2021-03-18 |
Đánh Giá | 4.15/5 Tổng số 41 Đánh Giá |
Nhà Phát Triển | huhuang03 |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "ytb not-interested button", "description": "add do-not-interest button to video.", "version": "0.1.4", "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "add_not_interested.js" ], "run_at": "document_end" } ], "icons": { "16": "ic_not_interested_16.png", "32": "ic_not_interested_32.png", "48": "ic_not_interested_48.png", "128": "ic_not_interested_128.png" }, "options_ui": { "page": "options.html", "open_in_tab": false }, "background": { "service_worker": "background.js" }, "permissions": [ "webNavigation", "scripting" ], "host_permissions": [ "https:\/\/www.youtube.com\/" ] } |