YAPI MOCK Plugin
Quickly simulate the interface defined on platform A, to achieve plug-ins compatible with all projects without modifying the code
Vad är YAPI MOCK Plugin?
YAPI MOCK Plugin är en Chrome-tillägg utvecklad av kaku_fe, och dess huvudfunktion är "Quickly simulate the interface defined on platform A, to achieve plug-ins compatible with all projects without modifying the code".
Tilläggsskärmbilder
Ladda ner YAPI MOCK Plugin-förlängningens CRX-fil
Ladda ner YAPI MOCK Plugin-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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
Grundläggande Information om Tillägg
Namn | YAPI MOCK Plugin |
ID | hmilbnjkdfelpikedbjhcdbpbjdfphnl |
Officiell webbadress | https://chromewebstore.google.com/detail/yapi-mock-plugin/hmilbnjkdfelpikedbjhcdbpbjdfphnl |
Beskrivning | Quickly simulate the interface defined on platform A, to achieve plug-ins compatible with all projects without modifying the code |
Filstorlek | 148 KB |
Antal Installationer | 336 |
Aktuell Version | 1.0.5 |
Senast Uppdaterad | 2020-05-27 |
Publiceringsdatum | 2020-05-26 |
Utvecklare | kaku_fe |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/JackyTianer/yapi-mock-proxy-plugin |
Hjälpsida URL | https://github.com/JackyTianer/yapi-mock-proxy-plugin |
Stödda Språk | 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": [] } |