Bouncer

Bouncer is the simplest URL Blocker extention there is.

Что такое Bouncer?

Bouncer - это расширение Chrome, разработанное Greg GMCOLAB, и его основная функция - "Bouncer is the simplest URL Blocker extention there is.".

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

screenshot
screenshot
screenshot

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

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

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

                        Bouncer is the simplest URL blocker extension there is. Simply add any URLs that you wish to block and Bouncer will make sure they will never bother you again. 
Brought to you by GMCOLAB.                    

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

Название Bouncer Bouncer
ID cahacokejmfdfanaahkiehiakkfhmejl
Официальный URL https://chromewebstore.google.com/detail/bouncer/cahacokejmfdfanaahkiehiakkfhmejl
Описание Bouncer is the simplest URL Blocker extention there is.
Размер файла 59.32 KB
Количество установок 22
Текущая Версия 1.0
Последнее Обновление 2020-12-20
Дата публикации 2020-12-14
Рейтинг 5.00/5 Всего 3 оценок
Разработчик Greg GMCOLAB
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://gmcolab.com/
URL страницы помощи https://gmcolab.com/
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "author": "Grigoris Chatzinikolaou",
    "name": "Bouncer",
    "version": "1.0",
    "description": "Bouncer is the simplest URL Blocker extention there is.",
    "icons": {
        "128": "icon128.png",
        "48": "icon48.png",
        "16": "icon16.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage"
    ],
    "browser_action": {
        "default_icon": "icon16.png",
        "default_popup": "popup.html"
    }
}