Popup Closer

This extension closes popups

Co to jest Popup Closer?

Popup Closer to rozszerzenie Chrome opracowane przez PowerThemes, a jego główną funkcją jest „This extension closes popups”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Popup Closer

Pobierz pliki rozszerzeń Popup Closer 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

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Popup Closer Popup Closer
ID ojgnkglnfmgpldidgmkelpdolefoijdo
Oficjalny URL https://chromewebstore.google.com/detail/popup-closer/ojgnkglnfmgpldidgmkelpdolefoijdo
Opis This extension closes popups
Rozmiar pliku 44.15 KB
Liczba instalacji 76
Aktualna Wersja 0.0.1
Ostatnia Aktualizacja 2014-12-30
Data Publikacji 2014-12-30
Ocena 1.00/5 Łącznie 1 Oceny
Deweloper PowerThemes
Typ Płatności free
Obsługiwane Języki 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"
            ]
        }
    ]
}