postMessage-catcher

A Chrome extension that captures the content of postMessage.

postMessage-catcherとは何ですか?

postMessage-catcherはyangjinによって開発されたChromeの拡張機能で、その主な機能は「A Chrome extension that captures the content of postMessage.」です。

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

screenshot

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

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

拡張機能の使用方法

                        An effective development tool to help you capture all messages posted and received on the current page. 

It aims to provide an easier debugging experience when you need to communicate with other iframes.

Contributions are welcome to the Github project.                    

拡張機能の基本情報

名前 postMessage-catcher postMessage-catcher
ID henlmhlhpgnkeecjjcbhhcfmecohnilo
公式URL https://chromewebstore.google.com/detail/postmessage-catcher/henlmhlhpgnkeecjjcbhhcfmecohnilo
説明 A Chrome extension that captures the content of postMessage.
ファイルサイズ 750 KB
インストール数 974
現在のバージョン 1.2.0
最終更新日 2021-08-22
公開日 2021-06-06
評価 3.00/5 合計 2 レビュー
開発者 yangjin
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/niexia/postMessage-catcher
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "postMessage-catcher",
    "version": "1.2.0",
    "description": "A Chrome extension that captures the content of postMessage.",
    "icons": {
        "16": "img\/icon-16.png",
        "48": "img\/icon-32.png",
        "32": "img\/icon-48.png",
        "128": "img\/icon-128.png"
    },
    "author": "yang jin",
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": "img\/icon-48.png",
        "default_title": "postMessage catcher",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content-script.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        "js\/injected-script.js"
    ],
    "homepage_url": "https:\/\/github.com\/niexia\/postMessage-catcher",
    "permissions": [
        "storage"
    ]
}