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”。
擴展截圖
下載YAPI MOCK Plugin擴展crx文件
下載YAPI MOCK Plugin擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
                        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                     擴展基本資訊
| 名稱 |   |  
| ID | hmilbnjkdfelpikedbjhcdbpbjdfphnl | 
| 官方網址 | 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": []
}  |  |