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

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

확장 프로그램 사용 설명서

                        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
이메일 [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:\/\/*\/*"
    ]
}