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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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"
    ]
}