postMessage-catcher

A Chrome extension that captures the content of postMessage.

Qu'est-ce que postMessage-catcher ?

postMessage-catcher est une extension Chrome développée par yangjin, et sa fonction principale est "A Chrome extension that captures the content of postMessage.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension postMessage-catcher

Téléchargez les fichiers d'extension postMessage-catcher au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom postMessage-catcher postMessage-catcher
ID henlmhlhpgnkeecjjcbhhcfmecohnilo
URL Officiel https://chromewebstore.google.com/detail/postmessage-catcher/henlmhlhpgnkeecjjcbhhcfmecohnilo
Description A Chrome extension that captures the content of postMessage.
Taille du Fichier 750 KB
Nombre d'Installations 974
Version Actuelle 1.2.0
Dernière Mise à Jour 2021-08-22
Date de Publication 2021-06-06
Évaluation 3.00/5 Total 2 Évaluations
Développeur yangjin
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/niexia/postMessage-catcher
Langues Prises en Charge 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"
    ]
}