Popup blocker

block popup through window.open

What is Popup blocker?

Popup blocker is a Chrome extension developed by Raj, and its main feature is "block popup through window.open".

Download Popup blocker Extension CRX File

Download Popup blocker extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Blocks every "window.open"  Popup .   

Hide redirecting ad-links added.                    

Extension Basic Information

Name Popup blocker Popup blocker
ID hadkellihappjpdlmdbilicaghigdafb
Official URL https://chromewebstore.google.com/detail/popup-blocker/hadkellihappjpdlmdbilicaghigdafb
Description block popup through window.open
File Size 15.62 KB
Installation Count 145
Current Version 0.4.3
Last Updated 2018-05-14
Publish Date 2018-05-13
Rating 3.00/5 Total 2 Ratings
Developer Raj
Email [email protected]
Payment Type free
Supported Languages 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
}