yapi-ts
通过yapi生成js和ts代码
What is yapi-ts?
yapi-ts is a Chrome extension developed by Unknown, and its main feature is "通过yapi生成js和ts代码".
Extension Screenshots
Download yapi-ts Extension CRX File
Download yapi-ts extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
自动生成前端的请求层代码, 有类型提示无需重复手写。 使用方式: 1. 安装yapi-ts chrome插件 2. npx yapi-ts --s src/api 3. 打开yapi服务找到需要的接口, 点击生成代码
Extension Basic Information
Name | yapi-ts |
ID | nojjmcbnjafgcfhfmopkdjgbmmaeadmm |
Official URL | https://chromewebstore.google.com/detail/yapi-ts/nojjmcbnjafgcfhfmopkdjgbmmaeadmm |
Description | 通过yapi生成js和ts代码 |
File Size | 33.2 KB |
Installation Count | 119 |
Current Version | 1.0.0 |
Last Updated | 2021-11-10 |
Publish Date | 2021-11-10 |
Rating | 5.00/5 Total 1 Ratings |
Developer | Unknown |
[email protected] | |
Payment Type | free |
Extension Website | https://www.npmjs.com/package/yapi-ts |
Supported Languages | zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "yapi-ts", "version": "1.0.0", "description": "\u901a\u8fc7yapi\u751f\u6210js\u548cts\u4ee3\u7801", "icons": { "16": "yapi.png", "48": "yapi.png", "128": "yapi.png" }, "action": { "default_icon": "yapi.png", "default_popup": "popup\/popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ ".\/content_scripts\/content.js" ] } ], "permissions": [], "host_permissions": [ "http:\/\/localhost\/*" ] } |