Ad blocker
Removes the ads
Ad blocker là gì?
Ad blocker là một tiện ích mở rộng Chrome được phát triển bởi KarthiTech, và tính năng chính của nó là "Removes the ads".
Ả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 Ad blocker
Tải xuống các tệp mở rộng Ad 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
This is a simple tool to remove advertisements in a web page. SWITCH ON or OFF the Ad blocker with a simple click. The number of advertisements blocked in a website, will be displayed over extension icon. Ad blocker will monitor a website periodically and remove the dynamically loaded advertisements.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Ad blocker |
ID | ajmampgbofacbjaoahgcjbjfffcbmcea |
URL Chính Thức | https://chromewebstore.google.com/detail/ad-blocker/ajmampgbofacbjaoahgcjbjfffcbmcea |
Mô tả | Removes the ads |
Kích Thước Tệp | 9.58 KB |
Số Lần Cài Đặt | 6,452 |
Phiên Bản Hiện Tại | 1.0.2 |
Cập Nhật Lần Cuối | 2021-09-13 |
Ngày Phát Hành | 2019-06-28 |
Đánh Giá | 3.33/5 Tổng số 6 Đánh Giá |
Nhà Phát Triển | KarthiTech |
[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": 2, "name": "Ad blocker", "description": "Removes the ads", "version": "1.0.2", "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "incognito": "split", "browser_action": { "default_icon": "on.png", "default_title": "Remove the Ads" }, "background": { "scripts": [ "bm.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "pm.js" ] } ] } |