YAPI MOCK Plugin
Quickly simulate the interface defined on platform A, to achieve plug-ins compatible with all projects without modifying the code
Wat is YAPI MOCK Plugin?
YAPI MOCK Plugin is een Chrome-extensie ontwikkeld door kaku_fe, en de belangrijkste functie is "Quickly simulate the interface defined on platform A, to achieve plug-ins compatible with all projects without modifying the code".
Extensie Screenshots
Download het CRX-bestand van de extensie YAPI MOCK Plugin
Download YAPI MOCK Plugin-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | YAPI MOCK Plugin |
ID | hmilbnjkdfelpikedbjhcdbpbjdfphnl |
Officiële URL | https://chromewebstore.google.com/detail/yapi-mock-plugin/hmilbnjkdfelpikedbjhcdbpbjdfphnl |
Beschrijving | Quickly simulate the interface defined on platform A, to achieve plug-ins compatible with all projects without modifying the code |
Bestandsgrootte | 148 KB |
Aantal Installaties | 336 |
Huidige Versie | 1.0.5 |
Laatst Bijgewerkt | 2020-05-27 |
Publicatiedatum | 2020-05-26 |
Ontwikkelaar | kaku_fe |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/JackyTianer/yapi-mock-proxy-plugin |
Help Pagina-URL | https://github.com/JackyTianer/yapi-mock-proxy-plugin |
Ondersteunde Talen | 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": [] } |