Popup Closer

This extension closes popups

Cos'è Popup Closer?

Popup Closer è un'estensione di Chrome sviluppata da PowerThemes, e la sua funzione principale è "This extension closes popups".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Popup Closer

Scarica i file di estensione Popup Closer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Popup Closer Popup Closer
ID ojgnkglnfmgpldidgmkelpdolefoijdo
URL Ufficiale https://chromewebstore.google.com/detail/popup-closer/ojgnkglnfmgpldidgmkelpdolefoijdo
Descrizione This extension closes popups
Dimensione del File 44.15 KB
Conteggio Installazioni 76
Versione Corrente 0.0.1
Ultimo Aggiornamento 2014-12-30
Data di Pubblicazione 2014-12-30
Valutazione 1.00/5 Totale 1 Valutazioni
Sviluppatore PowerThemes
Tipo di Pagamento free
Lingue Supportate 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"
            ]
        }
    ]
}