postMessage-catcher

A Chrome extension that captures the content of postMessage.

Was ist postMessage-catcher?

postMessage-catcher ist eine Chrome-Erweiterung, die von yangjin entwickelt wurde, und ihr Hauptmerkmal ist "A Chrome extension that captures the content of postMessage.".

Erweiterungsscreenshots

screenshot

postMessage-catcher-Erweiterungs-CRX-Datei herunterladen

Laden Sie postMessage-catcher-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name postMessage-catcher postMessage-catcher
ID henlmhlhpgnkeecjjcbhhcfmecohnilo
Offizielle URL https://chromewebstore.google.com/detail/postmessage-catcher/henlmhlhpgnkeecjjcbhhcfmecohnilo
Beschreibung A Chrome extension that captures the content of postMessage.
Dateigröße 750 KB
Installationsanzahl 974
Aktuelle Version 1.2.0
Letztes Update 2021-08-22
Veröffentlichungsdatum 2021-06-06
Bewertung 3.00/5 Insgesamt 2 Bewertungen
Entwickler yangjin
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/niexia/postMessage-catcher
Unterstützte Sprachen 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"
    ]
}