Popup Closer

This extension closes popups

Apa itu Popup Closer?

Popup Closer adalah ekstensi Chrome yang dikembangkan oleh PowerThemes, dan fitur utamanya adalah "This extension closes popups".

Screenshot Ekstensi

screenshot
screenshot
screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Popup Closer

Unduh file ekstensi Popup Closer dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Popup Closer Popup Closer
ID ojgnkglnfmgpldidgmkelpdolefoijdo
URL Resmi https://chromewebstore.google.com/detail/popup-closer/ojgnkglnfmgpldidgmkelpdolefoijdo
Deskripsi This extension closes popups
Ukuran File 44.15 KB
Jumlah Instalasi 76
Versi Saat Ini 0.0.1
Terakhir Diperbarui 2014-12-30
Tanggal Publikasi 2014-12-30
Penilaian 1.00/5 Total 1 Penilaian
Pengembang PowerThemes
Tipe Pembayaran free
Bahasa yang Didukung 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"
            ]
        }
    ]
}