Video Blocker
Video Blocker
Video Blocker là gì?
Video Blocker là một tiện ích mở rộng Chrome được phát triển bởi Ran Leonard, và tính năng chính của nó là "Video Blocker".
Ả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 Video Blocker
Tải xuống các tệp mở rộng Video Blocker 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
Video Blocker allows you to hide videos from channels that you want to prevent your kids or yourself from watching. You can specify these channels by going to one of their videos, clicking the extension at top right of the Chrome browser, and clicking the 'block' button. If you find any bugs or have any other problems with this extension, please notify me via the support option on the details-tab on this page. It is very difficult to help you out if you report a problem via the comments, since there is no way for me to respond to you. Good luck and happy video blocking!
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | hficoaacnnfallmajhbmkakebpfllpbi |
URL Chính Thức | https://chrome.google.com/webstore/detail/video-blocker/hficoaacnnfallmajhbmkakebpfllpbi |
Mô tả | Video Blocker |
Kích Thước Tệp | 161 KB |
Số Lần Cài Đặt | 3,000 |
Phiên Bản Hiện Tại | 1.0.4 |
Cập Nhật Lần Cuối | 2017-10-26 |
Ngày Phát Hành | 2017-10-26 |
Đánh Giá | 2.04/5 Tổng số 23 Đánh Giá |
Nhà Phát Triển | Ran Leonard |
[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", "manifest_version": 2, "name": "Video Blocker", "description": "Video Blocker", "version": "1.0.4", "permissions": [ "tabs", "storage", "contextMenus" ], "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png" }, "browser_action": { "default_popup": "popup.html", "title": "test" }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*", "http:\/\/*.youtube.com\/*" ], "js": [ "js\/jquery-2.0.3.min.js", "js\/analytics.js", "js\/custom_content.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "js\/jquery-2.0.3.min.js", "js\/analytics.js", "js\/background.js" ], "persistent": false }, "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'" } |