YAPI MOCK Plugin
Quickly simulate the interface defined on platform A, to achieve plug-ins compatible with all projects without modifying the code
O que é YAPI MOCK Plugin?
YAPI MOCK Plugin é uma extensão do Chrome desenvolvida por kaku_fe, e sua principal característica é "Quickly simulate the interface defined on platform A, to achieve plug-ins compatible with all projects without modifying the code".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão YAPI MOCK Plugin
Baixe arquivos de extensão YAPI MOCK Plugin no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | YAPI MOCK Plugin |
ID | hmilbnjkdfelpikedbjhcdbpbjdfphnl |
URL Oficial | https://chromewebstore.google.com/detail/yapi-mock-plugin/hmilbnjkdfelpikedbjhcdbpbjdfphnl |
Descrição | Quickly simulate the interface defined on platform A, to achieve plug-ins compatible with all projects without modifying the code |
Tamanho do Arquivo | 148 KB |
Contagem de Instalações | 336 |
Versão Atual | 1.0.5 |
Última Atualização | 2020-05-27 |
Data de Publicação | 2020-05-26 |
Desenvolvedor | kaku_fe |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/JackyTianer/yapi-mock-proxy-plugin |
URL da Página de Ajuda | https://github.com/JackyTianer/yapi-mock-proxy-plugin |
Idiomas Suportados | 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": [] } |