postMessage-catcher

A Chrome extension that captures the content of postMessage.

¿Qué es postMessage-catcher?

postMessage-catcher es una extensión de Chrome desarrollada por yangjin, y su función principal es "A Chrome extension that captures the content of postMessage.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión postMessage-catcher

Descarga archivos de extensión postMessage-catcher en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre postMessage-catcher postMessage-catcher
ID henlmhlhpgnkeecjjcbhhcfmecohnilo
URL Oficial https://chromewebstore.google.com/detail/postmessage-catcher/henlmhlhpgnkeecjjcbhhcfmecohnilo
Descripción A Chrome extension that captures the content of postMessage.
Tamaño del Archivo 750 KB
Cantidad de Instalaciones 974
Versión Actual 1.2.0
Última Actualización 2021-08-22
Fecha de Publicación 2021-06-06
Calificación 3.00/5 Total de 2 Calificaciones
Desarrollador yangjin
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/niexia/postMessage-catcher
Idiomas Soportados 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"
    ]
}