postMessage-catcher

A Chrome extension that captures the content of postMessage.

ما هو postMessage-catcher؟

postMessage-catcher هو إضافة Chrome تم تطويرها بواسطة yangjin، والميزة الرئيسية لها هي "A Chrome extension that captures the content of postMessage.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة postMessage-catcher

قم بتنزيل ملفات الامتداد postMessage-catcher بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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.                    

معلومات أساسية عن التمديد

الاسم postMessage-catcher postMessage-catcher
ID henlmhlhpgnkeecjjcbhhcfmecohnilo
عنوان URL الرسمي https://chromewebstore.google.com/detail/postmessage-catcher/henlmhlhpgnkeecjjcbhhcfmecohnilo
الوصف A Chrome extension that captures the content of postMessage.
حجم الملف 750 KB
عدد التثبيتات 974
النسخة الحالية 1.2.0
آخر تحديث 2021-08-22
تاريخ النشر 2021-06-06
تقييم 3.00/5 مجموع تقييمات 2
المطور yangjin
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/niexia/postMessage-catcher
اللغات المدعومة 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"
    ]
}