YAPI MOCK Plugin

Quickly simulate the interface defined on platform A, to achieve plug-ins compatible with all projects without modifying the code

YAPI MOCK Plugin란 무엇입니까?

YAPI MOCK Plugin은(는) kaku_fe에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Quickly simulate the interface defined on platform A, to achieve plug-ins compatible with all projects without modifying the code"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

YAPI MOCK Plugin 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        You can use the extension to Quickly intercepted the request defined on your yapi platform

How to used:
https://github.com/JackyTianer/yapi-mock-proxy-plugin                    

확장 프로그램 기본 정보

이름 YAPI MOCK Plugin YAPI MOCK Plugin
ID hmilbnjkdfelpikedbjhcdbpbjdfphnl
공식 URL https://chromewebstore.google.com/detail/yapi-mock-plugin/hmilbnjkdfelpikedbjhcdbpbjdfphnl
설명 Quickly simulate the interface defined on platform A, to achieve plug-ins compatible with all projects without modifying the code
파일 크기 148 KB
설치 횟수 336
현재 버전 1.0.5
최근 업데이트 2020-05-27
출시 날짜 2020-05-26
개발자 kaku_fe
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/JackyTianer/yapi-mock-proxy-plugin
도움말 페이지 URL https://github.com/JackyTianer/yapi-mock-proxy-plugin
지원되는 언어 en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "1.0.5",
    "manifest_version": 2,
    "default_locale": "zh_CN",
    "description": "__MSG_appDescription__",
    "icons": {
        "16": "icons\/icon-16.png",
        "128": "icons\/icon-128.png"
    },
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "permissions": [
        "storage",
        "webRequest",
        "webRequestBlocking",
        "unlimitedStorage",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "options_ui": {
        "page": "options.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "scripts\/contentscript.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "browser_action": {
        "default_icon": {
            "19": "icons\/icon-19.png",
            "38": "icons\/icon-38.png"
        },
        "default_title": "Extension Boilerplate",
        "default_popup": "popup.html"
    },
    "web_accessible_resources": []
}