Ad blocker

Removes the ads

Что такое Ad blocker?

Ad blocker - это расширение Chrome, разработанное KarthiTech, и его основная функция - "Removes the ads".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Ad blocker

Скачайте файлы расширений Ad blocker в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Ad blocker Ad blocker
ID ajmampgbofacbjaoahgcjbjfffcbmcea
Официальный URL https://chromewebstore.google.com/detail/ad-blocker/ajmampgbofacbjaoahgcjbjfffcbmcea
Описание Removes the ads
Размер файла 9.58 KB
Количество установок 6,452
Текущая Версия 1.0.2
Последнее Обновление 2021-09-13
Дата публикации 2019-06-28
Рейтинг 3.33/5 Всего 6 оценок
Разработчик KarthiTech
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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"
            ]
        }
    ]
}