ParrotMocker

Intercept h5/node.js requests and mock reponses

ParrotMocker란 무엇입니까?

ParrotMocker은(는) chinesedfan에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Intercept h5/node.js requests and mock reponses"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

ParrotMocker 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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:\/\/*\/*"
    ]
}