PopupBeGone

Block those annoying popups on webpages

PopupBeGoneคืออะไร?

PopupBeGone เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Gavin Song และคุณลักษณะหลักของมันคือ "Block those annoying popups on webpages"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย PopupBeGone

ดาวน์โหลดไฟล์ส่วนขยาย PopupBeGone ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        PopupBeGone is a chrome extension designed to automatically remove annoying popups, such as the ones that ask you to register for a newsletter, disable your adblocker or download a free e-book.

**Features**
> Automatically blocks popups on webpages.
> Quick shortcut (Ctrl-Shift-X) to kill any new popups that appear.
> Customizable whitelist, so you can enable popups on some sites.
> Fast and lightweight - Even comes with a "fast mode" so it runs smoothly on any computer.
> Fixes website usability - Re-enables scrolling, de-blurs the content and hides any covers.
> Nice and simple - All our extension does is block popups - no collecting user data or premium payments!

Works very well with other adblocking extensions.

Found a bug? Want to suggest a feature? Check out our github: 
https://github.com/Gavin-Song/PopupBeGone                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ PopupBeGone PopupBeGone
ID ndbfglcbdckpoapnkolfekbbdfpcdblj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/popupbegone/ndbfglcbdckpoapnkolfekbbdfpcdblj
คำอธิบาย Block those annoying popups on webpages
ขนาดไฟล์ 65.58 KB
จำนวนการติดตั้ง 272
เวอร์ชันปัจจุบัน 1.0.1
อัปเดตครั้งล่าสุด 2018-02-13
วันที่เผยแพร่ 2018-02-13
คะแนน 3.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา Gavin Song
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "PopupBeGone",
    "description": "Block those annoying popups on webpages",
    "version": "1.0.1",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "PopupBeGone"
    },
    "icons": {
        "128": "img\/icon_active.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/config.js",
                "js\/util.js",
                "js\/detect_modal.js",
                "js\/main.js",
                "js\/modal_killer.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "commands": {
        "popupbegone-kill-modal": {
            "suggested_key": {
                "default": "Ctrl+Shift+X",
                "mac": "Command+Shift+X"
            },
            "description": "Kills the current modal on the screen."
        }
    },
    "permissions": [
        "activeTab",
        "tabs",
        "",
        "storage"
    ]
}