Popup blocker

block popup through window.open

Popup blocker là gì?

Popup blocker là một tiện ích mở rộng Chrome được phát triển bởi Raj, và tính năng chính của nó là "block popup through window.open".

Tải xuống tệp CRX của tiện ích mở rộng Popup blocker

Tải xuống các tệp mở rộng Popup blocker dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Blocks every "window.open"  Popup .   

Hide redirecting ad-links added.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Popup blocker Popup blocker
ID hadkellihappjpdlmdbilicaghigdafb
URL Chính Thức https://chromewebstore.google.com/detail/popup-blocker/hadkellihappjpdlmdbilicaghigdafb
Mô tả block popup through window.open
Kích Thước Tệp 15.62 KB
Số Lần Cài Đặt 145
Phiên Bản Hiện Tại 0.4.3
Cập Nhật Lần Cuối 2018-05-14
Ngày Phát Hành 2018-05-13
Đánh Giá 3.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Raj
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Popup blocker",
    "description": "block popup through window.open",
    "version": "0.4.3",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "match_about_blank": false,
            "all_frames": true,
            "js": [
                "content-script.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "tabs",
        "storage"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_title": "Popup lists"
    },
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "content_security_policy": "default-src 'self'; script-src 'self';",
    "manifest_version": 2
}