Popup blocker

block popup through window.open

Popup blockerとは何ですか?

Popup blockerはRajによって開発されたChromeの拡張機能で、その主な機能は「block popup through window.open」です。

Popup blocker拡張機能のCRXファイルをダウンロード

Popup blocker拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Blocks every "window.open"  Popup .   

Hide redirecting ad-links added.                    

拡張機能の基本情報

名前 Popup blocker Popup blocker
ID hadkellihappjpdlmdbilicaghigdafb
公式URL https://chromewebstore.google.com/detail/popup-blocker/hadkellihappjpdlmdbilicaghigdafb
説明 block popup through window.open
ファイルサイズ 15.62 KB
インストール数 145
現在のバージョン 0.4.3
最終更新日 2018-05-14
公開日 2018-05-13
評価 3.00/5 合計 2 レビュー
開発者 Raj
Eメール [email protected]
支払い方法 free
対応言語 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
}