postMessage-catcher

A Chrome extension that captures the content of postMessage.

Hvad er postMessage-catcher?

postMessage-catcher er en Chrome-udvidelse udviklet af yangjin, og dens hovedfunktion er "A Chrome extension that captures the content of postMessage.".

Udvidelsesskærmbilleder

screenshot

Download postMessage-catcher-udvidelses-CRX-fil

Download postMessage-catcher-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn postMessage-catcher postMessage-catcher
ID henlmhlhpgnkeecjjcbhhcfmecohnilo
Officiel URL https://chromewebstore.google.com/detail/postmessage-catcher/henlmhlhpgnkeecjjcbhhcfmecohnilo
Beskrivelse A Chrome extension that captures the content of postMessage.
Filstørrelse 750 KB
Antal Installationer 974
Nuværende Version 1.2.0
Senest Opdateret 2021-08-22
Udgivelsesdato 2021-06-06
Bedømmelse 3.00/5 Samlet 2 Bedømmelser
Udvikler yangjin
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/niexia/postMessage-catcher
Understøttede Sprog 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"
    ]
}