Popup Closer

This extension closes popups

O que é Popup Closer?

Popup Closer é uma extensão do Chrome desenvolvida por PowerThemes, e sua principal característica é "This extension closes popups".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Popup Closer

Baixe arquivos de extensão Popup Closer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Popup Closer Popup Closer
ID ojgnkglnfmgpldidgmkelpdolefoijdo
URL Oficial https://chromewebstore.google.com/detail/popup-closer/ojgnkglnfmgpldidgmkelpdolefoijdo
Descrição This extension closes popups
Tamanho do Arquivo 44.15 KB
Contagem de Instalações 76
Versão Atual 0.0.1
Última Atualização 2014-12-30
Data de Publicação 2014-12-30
Classificação 1.00/5 Total de 1 Avaliações
Desenvolvedor PowerThemes
Tipo de Pagamento free
Idiomas Suportados 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"
            ]
        }
    ]
}