AdBlock Manager

This extension blocks advertisements and annoying pop-up windows on different websites to make your browsing experience safe and…

Что такое AdBlock Manager?

AdBlock Manager - это расширение Chrome, разработанное banimahla5789, и его основная функция - "This extension blocks advertisements and annoying pop-up windows on different websites to make your browsing experience safe and…".

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

screenshot
screenshot

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

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

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

                        This extension blocks advertisements and annoying pop-up windows on different websites to make your browsing experience safe and fast                    

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

Название AdBlock Manager AdBlock Manager
ID pdbcfmobcbmikdhombihdglgdlkjllba
Официальный URL https://chrome.google.com/webstore/detail/adblock-manager/pdbcfmobcbmikdhombihdglgdlkjllba
Описание This extension blocks advertisements and annoying pop-up windows on different websites to make your browsing experience safe and…
Размер файла 386 KB
Количество установок 1,000
Текущая Версия 0.0.3
Последнее Обновление 2022-01-26
Дата публикации 2021-12-10
Рейтинг 5.00/5 Всего 26 оценок
Разработчик banimahla5789
Электронная почта [email protected]
Тип оплаты free
URL страницы политики конфиденциальности https://justpaste.it/93rkz
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "AdBlock Manager",
    "version": "0.0.3",
    "manifest_version": 2,
    "permissions": [
        "tabs",
        "",
        "webRequest",
        "webRequestBlocking",
        "storage",
        "cookies",
        "alarms"
    ],
    "icons": {
        "16": "icons\/adblock-16.png",
        "32": "icons\/adblock-32.png",
        "48": "icons\/adblock-48.png",
        "64": "icons\/adblock-64.png",
        "128": "icons\/adblock-128.png"
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "libs\/jquery.js",
            "lists\/blackListUrls.js",
            "lists\/whiteListUrls.js",
            "js\/blocker.js",
            "background-min.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "js": [
                "libs\/jquery.js",
                "content_js\/content_blocker.js"
            ],
            "run_at": "document_start",
            "css": [
                "css\/hide.css"
            ],
            "matches": [
                ""
            ]
        }
    ]
}