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 с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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"
    ]
}