postMessage-catcher

A Chrome extension that captures the content of postMessage.

Vad är postMessage-catcher?

postMessage-catcher är en Chrome-tillägg utvecklad av yangjin, och dess huvudfunktion är "A Chrome extension that captures the content of postMessage.".

Tilläggsskärmbilder

screenshot

Ladda ner postMessage-catcher-förlängningens CRX-fil

Ladda ner postMessage-catcher-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn postMessage-catcher postMessage-catcher
ID henlmhlhpgnkeecjjcbhhcfmecohnilo
Officiell webbadress https://chromewebstore.google.com/detail/postmessage-catcher/henlmhlhpgnkeecjjcbhhcfmecohnilo
Beskrivning A Chrome extension that captures the content of postMessage.
Filstorlek 750 KB
Antal Installationer 974
Aktuell Version 1.2.0
Senast Uppdaterad 2021-08-22
Publiceringsdatum 2021-06-06
Betyg 3.00/5 Totalt 2 Betyg
Utvecklare yangjin
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/niexia/postMessage-catcher
Stödda Språk 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"
    ]
}