ParrotMocker

Intercept h5/node.js requests and mock reponses

Что такое ParrotMocker?

ParrotMocker - это расширение Chrome, разработанное chinesedfan, и его основная функция - "Intercept h5/node.js requests and mock reponses".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения ParrotMocker

Скачайте файлы расширений ParrotMocker в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

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

                        Supports to intercept XHR/JSONP/Fetch requests and forward to the specified mock server.                    

Основная информация о расширении

Название ParrotMocker ParrotMocker
ID hdhamekapmnmceohfdbfelofidflfelm
Официальный URL https://chromewebstore.google.com/detail/parrotmocker/hdhamekapmnmceohfdbfelofidflfelm
Описание Intercept h5/node.js requests and mock reponses
Размер файла 55.87 KB
Количество установок 182
Текущая Версия 1.6.0
Последнее Обновление 2022-11-25
Дата публикации 2018-07-07
Рейтинг 5.00/5 Всего 2 оценок
Разработчик chinesedfan
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/chinesedfan/parrot-mocker
URL страницы помощи https://github.com/chinesedfan/parrot-mocker/issues
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ParrotMocker",
    "version": "1.6.0",
    "description": "Intercept h5\/node.js requests and mock reponses",
    "icons": {
        "128": "img\/parrot-128.png"
    },
    "action": {
        "default_title": "ParrotMocker",
        "default_icon": "img\/parrot-32.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "build\/content.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "build\/parrot.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "options_page": "options.html",
    "permissions": [
        "cookies"
    ],
    "host_permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*"
    ]
}