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
官方網址 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
        }
    ]
}