Ad blocker
Removes the ads
What is Ad blocker?
Ad blocker is a Chrome extension developed by KarthiTech, and its main feature is "Removes the ads".
Extension Screenshots
Download Ad blocker Extension CRX File
Download Ad blocker extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Ad blocker |
ID | ajmampgbofacbjaoahgcjbjfffcbmcea |
Official URL | https://chromewebstore.google.com/detail/ad-blocker/ajmampgbofacbjaoahgcjbjfffcbmcea |
Description | Removes the ads |
File Size | 9.58 KB |
Installation Count | 6,452 |
Current Version | 1.0.2 |
Last Updated | 2021-09-13 |
Publish Date | 2019-06-28 |
Rating | 3.33/5 Total 6 Ratings |
Developer | KarthiTech |
[email protected] | |
Payment Type | free |
Supported Languages | 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" ] } ] } |