postMessage Developer Tools

Provides a dev tools panel to view postMessages for the current page

postMessage Developer Toolsとは何ですか?

postMessage Developer ToolsはalxHenry Developerによって開発されたChromeの拡張機能で、その主な機能は「Provides a dev tools panel to view postMessages for the current page」です。

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

screenshot

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

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

拡張機能の使用方法

                        Provides a dev tools panel to view postMessages for the current page. It aims to provide an easier debugging experience than setting up console logs on your message listeners and filtering in the console for the results.

Contributions are welcome to the Github project here: https://github.com/alxHenry/chrome-postMessage-dev-tools                    

拡張機能の基本情報

名前 postMessage Developer Tools postMessage Developer Tools
ID nadeoelabbieobdpmejlfidbhhdicmpa
公式URL https://chromewebstore.google.com/detail/postmessage-developer-too/nadeoelabbieobdpmejlfidbhhdicmpa
説明 Provides a dev tools panel to view postMessages for the current page
ファイルサイズ 15.86 KB
インストール数 2,756
現在のバージョン 1.1.0
最終更新日 2020-09-14
公開日 2020-08-02
評価 5.00/5 合計 3 レビュー
開発者 alxHenry Developer
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/alxHenry/chrome-postMessage-dev-tools
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "postMessage Developer Tools",
    "version": "1.1.0",
    "description": "Provides a dev tools panel to view postMessages for the current page",
    "devtools_page": ".\/bootstrap.html",
    "icons": {
        "16": "chat-16.png",
        "32": "chat-32.png",
        "48": "chat-48.png",
        "128": "chat-128.png"
    },
    "background": {
        "scripts": [
            ".\/src\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}