chrome-extension-mocker

A mock tool based on Chrome extension, no need to change any code, support dynamic mock data.

chrome-extension-mockerคืออะไร?

chrome-extension-mocker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Sky.Sun และคุณลักษณะหลักของมันคือ "A mock tool based on Chrome extension, no need to change any code, support dynamic mock data."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย chrome-extension-mocker

ดาวน์โหลดไฟล์ส่วนขยาย chrome-extension-mocker ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Usage
In Chrome browser, press Ctrl+Shift+I or ⌘+⌥+I to open dev tools, go to Mocker panel.

Click the New button, and enter the mock data you want. In Match Request panel, set which requests need to match, and in Mock Response panel, set the simulate response you want to return.

Note that if one request is matched, the original request will be redirected into a data uri, you can see details in Console panel.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ chrome-extension-mocker chrome-extension-mocker
ID kfmkpfnmkjgcalngkpkjpjngjkfkjecl
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/chrome-extension-mocker/kfmkpfnmkjgcalngkpkjpjngjkfkjecl
คำอธิบาย A mock tool based on Chrome extension, no need to change any code, support dynamic mock data.
ขนาดไฟล์ 12.08 MB
จำนวนการติดตั้ง 46
เวอร์ชันปัจจุบัน 2.0.0
อัปเดตครั้งล่าสุด 2021-12-06
วันที่เผยแพร่ 2021-12-06
ผู้พัฒนา Sky.Sun
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/eshengsky/chrome-extension-mocker
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "chrome-extension-mocker",
    "homepage_url": "http:\/\/localhost:8080\/",
    "description": "A mock tool based on Chrome extension, no need to change any code, support dynamic mock data.",
    "default_locale": "en",
    "permissions": [
        "storage",
        "webRequest",
        "webRequestBlocking",
        "http:\/\/*\/",
        "https:\/\/*\/",
        "",
        "*:\/\/*\/*"
    ],
    "icons": {
        "16": "icons\/icon_38.png",
        "48": "icons\/icon_38.png",
        "128": "icons\/icon_128.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "js\/content-script.js"
            ],
            "run_at": "document_start"
        }
    ],
    "devtools_page": "devtools.html",
    "browser_action": {
        "default_title": "Mocker",
        "default_icon": {
            "19": "icons\/icon_38.png",
            "38": "icons\/icon_38.png"
        }
    },
    "version": "2.0.0",
    "content_security_policy": "script-src 'self' ; object-src 'self'"
}