YouTube NoAds!
The add-on blocks ads presented in videos on youtube.
YouTube NoAds! là gì?
YouTube NoAds! là một tiện ích mở rộng Chrome được phát triển bởi info, và tính năng chính của nó là "The add-on blocks ads presented in videos on youtube.".
Ả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 NoAds!
Tải xuống các tệp mở rộng YouTube NoAds! 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 add-on blocks ads presented in videos on youtube. The ad blocker consists in automatically selecting the 'skip ads' button when it becomes active.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | plohhfnpbopkgjhbaljjepioomefkaog |
URL Chính Thức | https://chrome.google.com/webstore/detail/youtube-noads/plohhfnpbopkgjhbaljjepioomefkaog |
Mô tả | The add-on blocks ads presented in videos on youtube. |
Kích Thước Tệp | 166 KB |
Số Lần Cài Đặt | 761 |
Phiên Bản Hiện Tại | 2.0.0 |
Cập Nhật Lần Cuối | 2022-11-30 |
Ngày Phát Hành | 2022-11-30 |
Đánh Giá | 4.50/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | info |
[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": "YouTube NoAds!", "description": "The add-on blocks ads presented in videos on youtube.", "manifest_version": 3, "version": "2.0.0", "background": { "service_worker": "src\/service_worker.js" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "src\/content_scripts.js" ], "run_at": "document_end", "all_frames": true } ], "permissions": [ "alarms", "storage", "webRequest" ], "host_permissions": [ "*:\/\/*\/*" ], "web_accessible_resources": [ { "resources": [ "*" ], "matches": [ "*:\/\/*\/*" ] } ], "icons": { "128": "resource\/youtube(3).png" } } |