Popup Closer

This extension closes popups

Что такое Popup Closer?

Popup Closer - это расширение Chrome, разработанное PowerThemes, и его основная функция - "This extension closes popups".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        Are you tired of popups? Want to get rid of this problem once and for all? Popup Closer will help you with this.

Instructions:
After the installation you will have the extension icon next to the address bar. If some page has popup window:
1) Click on the icon
2) Click on the popup window
3) Click on the icon again
4) Enjoy                    

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

Название Popup Closer Popup Closer
ID ojgnkglnfmgpldidgmkelpdolefoijdo
Официальный URL https://chromewebstore.google.com/detail/popup-closer/ojgnkglnfmgpldidgmkelpdolefoijdo
Описание This extension closes popups
Размер файла 44.15 KB
Количество установок 76
Текущая Версия 0.0.1
Последнее Обновление 2014-12-30
Дата публикации 2014-12-30
Рейтинг 1.00/5 Всего 1 оценок
Разработчик PowerThemes
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Popup Closer",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "This extension closes popups",
    "background": {
        "scripts": [
            "background.js",
            "script.js",
            "off.js"
        ],
        "persistent": false
    },
    "permissions": [
        "activeTab"
    ],
    "icons": {
        "128": "icon1.png"
    },
    "browser_action": {
        "default_title": "Popup Closer",
        "default_icon": "icon1.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "background.js",
                "script.js",
                "off.js"
            ]
        }
    ]
}