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
扩展基本信息
名称 | 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": [] } |