postMessage-catcher

A Chrome extension that captures the content of postMessage.

Co je postMessage-catcher?

postMessage-catcher je rozšíření Chrome vyvinuté yangjin, a jeho hlavní funkcí je „A Chrome extension that captures the content of postMessage.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření postMessage-catcher

Stáhněte si soubory rozšíření postMessage-catcher ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název postMessage-catcher postMessage-catcher
ID henlmhlhpgnkeecjjcbhhcfmecohnilo
Oficiální URL https://chromewebstore.google.com/detail/postmessage-catcher/henlmhlhpgnkeecjjcbhhcfmecohnilo
Popis A Chrome extension that captures the content of postMessage.
Velikost souboru 750 KB
Počet instalací 974
Aktuální Verze 1.2.0
Poslední Aktualizace 2021-08-22
Datum Vydání 2021-06-06
Hodnocení 3.00/5 Celkem 2 Hodnocení
Vývojář yangjin
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/niexia/postMessage-catcher
Podporované Jazyky 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"
    ]
}