YAPI MOCK Plugin
Quickly simulate the interface defined on platform A, to achieve plug-ins compatible with all projects without modifying the code
Was ist YAPI MOCK Plugin?
YAPI MOCK Plugin ist eine Chrome-Erweiterung, die von kaku_fe entwickelt wurde, und ihr Hauptmerkmal ist "Quickly simulate the interface defined on platform A, to achieve plug-ins compatible with all projects without modifying the code".
Erweiterungsscreenshots
YAPI MOCK Plugin-Erweiterungs-CRX-Datei herunterladen
Laden Sie YAPI MOCK Plugin-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | hmilbnjkdfelpikedbjhcdbpbjdfphnl |
| Offizielle URL | https://chromewebstore.google.com/detail/yapi-mock-plugin/hmilbnjkdfelpikedbjhcdbpbjdfphnl |
| Beschreibung | Quickly simulate the interface defined on platform A, to achieve plug-ins compatible with all projects without modifying the code |
| Dateigröße | 148 KB |
| Installationsanzahl | 336 |
| Aktuelle Version | 1.0.5 |
| Letztes Update | 2020-05-27 |
| Veröffentlichungsdatum | 2020-05-26 |
| Entwickler | kaku_fe |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/JackyTianer/yapi-mock-proxy-plugin |
| Hilfeseite URL | https://github.com/JackyTianer/yapi-mock-proxy-plugin |
| Unterstützte Sprachen | 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": []
} | |