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"
            ]
        }
    ]
}