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