Ad blocker
Removes the ads
Was ist Ad blocker?
Ad blocker ist eine Chrome-Erweiterung, die von KarthiTech entwickelt wurde, und ihr Hauptmerkmal ist "Removes the ads".
Erweiterungsscreenshots
Ad blocker-Erweiterungs-CRX-Datei herunterladen
Laden Sie Ad blocker-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Ad blocker |
ID | ajmampgbofacbjaoahgcjbjfffcbmcea |
Offizielle URL | https://chromewebstore.google.com/detail/ad-blocker/ajmampgbofacbjaoahgcjbjfffcbmcea |
Beschreibung | Removes the ads |
Dateigröße | 9.58 KB |
Installationsanzahl | 6,452 |
Aktuelle Version | 1.0.2 |
Letztes Update | 2021-09-13 |
Veröffentlichungsdatum | 2019-06-28 |
Bewertung | 3.33/5 Insgesamt 6 Bewertungen |
Entwickler | KarthiTech |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } ] } |