swagger-ui
A Vue Browser Extension
什么是swagger-ui?
swagger-ui是由s.ivankorobchuk开发的Chrome扩展程序,该扩展的主要功能是“A Vue Browser Extension”。
扩展截图
下载swagger-ui扩展crx文件
下载swagger-ui扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
A handy and stylish swagger wrapper that provides the user with additional content management tools such as search, copy and easy navigation. The current extension aims to improve UX and is only used for swagger documentation.
扩展基本信息
名称 | swagger-ui |
ID | hcfmggfckgblikfakbmmknfnhkohbcec |
官方URL | https://chromewebstore.google.com/detail/swagger-ui/hcfmggfckgblikfakbmmknfnhkohbcec |
简介 | A Vue Browser Extension |
文件大小 | 1.1 MB |
安装次数 | 256 |
当前版本 | 0.1.1 |
更新时间 | 2022-01-12 |
上架时间 | 2022-01-07 |
开发者 | s.ivankorobchuk |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_extName__", "homepage_url": "http:\/\/localhost:8080\/", "description": "A Vue Browser Extension", "default_locale": "en", "permissions": [ "storage", "background", "http:\/\/*\/", "https:\/\/*\/" ], "icons": { "16": "icons\/16.png", "48": "icons\/48.png", "128": "icons\/128.png" }, "background": { "scripts": [ "js\/background.js" ] }, "browser_action": { "default_popup": "popup.html", "default_title": "__MSG_extName__", "default_icon": { "19": "icons\/19.png", "38": "icons\/38.png" } }, "version": "0.1.1", "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |