Ad blocker
Removes the ads
Wat is Ad blocker?
Ad blocker is een Chrome-extensie ontwikkeld door KarthiTech, en de belangrijkste functie is "Removes the ads".
Extensie Screenshots
Download het CRX-bestand van de extensie Ad blocker
Download Ad blocker-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Ad blocker |
ID | ajmampgbofacbjaoahgcjbjfffcbmcea |
Officiële URL | https://chromewebstore.google.com/detail/ad-blocker/ajmampgbofacbjaoahgcjbjfffcbmcea |
Beschrijving | Removes the ads |
Bestandsgrootte | 9.58 KB |
Aantal Installaties | 6,452 |
Huidige Versie | 1.0.2 |
Laatst Bijgewerkt | 2021-09-13 |
Publicatiedatum | 2019-06-28 |
Beoordeling | 3.33/5 Totaal 6 Beoordelingen |
Ontwikkelaar | KarthiTech |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } ] } |