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
        }
    ]
}