postMessage debugger

This extension prints messages sent with postMessage to the console

postMessage debuggerとは何ですか?

postMessage debuggerはwille.eklundによって開発されたChromeの拡張機能で、その主な機能は「This extension prints messages sent with postMessage to the console」です。

拡張機能のスクリーンショット

screenshot

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

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

拡張機能の使用方法

                        This chrome extension prints messages sent with postMessage to the console for debugging.                    

拡張機能の基本情報

名前 postMessage debugger postMessage debugger
ID ibnkhbkkelpcgofjlfnlanbigclpldad
公式URL https://chromewebstore.google.com/detail/postmessage-debugger/ibnkhbkkelpcgofjlfnlanbigclpldad
説明 This extension prints messages sent with postMessage to the console
ファイルサイズ 3.61 KB
インストール数 4,982
現在のバージョン 0.2.0
最終更新日 2018-11-28
公開日 2018-11-23
評価 4.58/5 合計 12 レビュー
開発者 wille.eklund
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "postMessage debugger",
    "description": "This extension prints messages sent with postMessage to the console",
    "version": "0.2.0",
    "browser_action": {
        "name": "Debug postMessages"
    },
    "content_scripts": [
        {
            "js": [
                "js\/postMessage-debugger.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "all_frames": true
        }
    ]
}