Oh-my-Mock

Extension for caching and mocking API (XHR/Fetch) responses

Oh-my-Mockคืออะไร?

Oh-my-Mock เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Lucas Caljé และคุณลักษณะหลักของมันคือ "Extension for caching and mocking API (XHR/Fetch) responses"

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

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Oh-my-Mock

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

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

                        OhMyMock mocks XMLHttpRequest and Fetch requests.  It caches responses automatically and as soon an API is called for which a response is already cached it will mock that request by serving a cached response. In the UI of OhMyMock you can modify responses, add response status codes and a much more.                    

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

ชื่อ Oh-my-Mock Oh-my-Mock
ID egadlcooejllkdejejkhibmaphidmock
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/oh-my-mock/egadlcooejllkdejejkhibmaphidmock
คำอธิบาย Extension for caching and mocking API (XHR/Fetch) responses
ขนาดไฟล์ 7.07 MB
จำนวนการติดตั้ง 2,211
เวอร์ชันปัจจุบัน 3.3.15
อัปเดตครั้งล่าสุด 2023-12-20
วันที่เผยแพร่ 2021-03-31
คะแนน 5.00/5 รวมทั้งหมด 8 คะแนน
ผู้พัฒนา Lucas Caljé
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/scaljeri/oh-my-mock
URL หน้าช่วยเหลือ https://github.com/scaljeri/oh-my-mock/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Oh-my-Mock",
    "version": "3.3.15",
    "description": "Extension for caching and mocking API (XHR\/Fetch) responses",
    "manifest_version": 3,
    "minimum_chrome_version": "96",
    "permissions": [
        "background",
        "storage",
        "unlimitedStorage",
        "tabs",
        "declarativeNetRequest",
        "webRequest"
    ],
    "host_permissions": [
        ""
    ],
    "action": {
        "default_icon": "oh-my-mock\/assets\/icons\/icon-off-128.png",
        "default_title": "OhMyMock"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "js": [
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "oh-my-mock.js",
                "oh-my-mock.js.map",
                "early-inject.js",
                "sandbox.html"
            ],
            "matches": [
                ""
            ]
        },
        {
            "resources": [
                "oh-my-mock\/index.html"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "icons": {
        "16": "oh-my-mock\/assets\/icons\/icon-16.png",
        "48": "oh-my-mock\/assets\/icons\/icon-48.png",
        "128": "oh-my-mock\/assets\/icons\/icon-128.png"
    },
    "sandbox": {
        "pages": [
            "sandbox.html"
        ]
    }
}