Ad blocker
Removes the ads
Apa itu Ad blocker?
Ad blocker adalah ekstensi Chrome yang dikembangkan oleh KarthiTech, dan fitur utamanya adalah "Removes the ads".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Ad blocker
Unduh file ekstensi Ad blocker dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Ad blocker |
ID | ajmampgbofacbjaoahgcjbjfffcbmcea |
URL Resmi | https://chromewebstore.google.com/detail/ad-blocker/ajmampgbofacbjaoahgcjbjfffcbmcea |
Deskripsi | Removes the ads |
Ukuran File | 9.58 KB |
Jumlah Instalasi | 6,452 |
Versi Saat Ini | 1.0.2 |
Terakhir Diperbarui | 2021-09-13 |
Tanggal Publikasi | 2019-06-28 |
Penilaian | 3.33/5 Total 6 Penilaian |
Pengembang | KarthiTech |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" ] } ] } |