Ad blocker
Removes the ads
Co to jest Ad blocker?
Ad blocker to rozszerzenie Chrome opracowane przez KarthiTech, a jego główną funkcją jest „Removes the ads”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Ad blocker
Pobierz pliki rozszerzeń Ad blocker w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Ad blocker |
ID | ajmampgbofacbjaoahgcjbjfffcbmcea |
Oficjalny URL | https://chromewebstore.google.com/detail/ad-blocker/ajmampgbofacbjaoahgcjbjfffcbmcea |
Opis | Removes the ads |
Rozmiar pliku | 9.58 KB |
Liczba instalacji | 6,452 |
Aktualna Wersja | 1.0.2 |
Ostatnia Aktualizacja | 2021-09-13 |
Data Publikacji | 2019-06-28 |
Ocena | 3.33/5 Łącznie 6 Oceny |
Deweloper | KarthiTech |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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" ] } ] } |