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
官方網址 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
電子郵箱 [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"
    ]
}