Open API 3 Github Viewer
If you have Open API yaml document on github and want a quick view? Here is your chrome extension. Navigate to an Open API yaml…
¿Qué es Open API 3 Github Viewer?
Open API 3 Github Viewer es una extensión de Chrome desarrollada por Vikrant Kandgaonkar, y su función principal es "If you have Open API yaml document on github and want a quick view? Here is your chrome extension. Navigate to an Open API yaml…".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Open API 3 Github Viewer
Descarga archivos de extensión Open API 3 Github Viewer en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
If you have Open API yaml document on github and want a quick view? Here is your chrome extension. Navigate to an Open API yaml spec on github and then click on the Extension icon. It will open a new tab where it will display nice HTML view of your Open API specification generated by https://github.com/Redocly/redoc Dev : Vikrant Kandgaonkar https://github.com/vikrantk365
Información Básica de la Extensión
Nombre | Open API 3 Github Viewer |
ID | ibejpheeklpjnlgkdpbfcbmflkookgjp |
URL Oficial | https://chromewebstore.google.com/detail/open-api-3-github-viewer/ibejpheeklpjnlgkdpbfcbmflkookgjp |
Descripción | If you have Open API yaml document on github and want a quick view? Here is your chrome extension. Navigate to an Open API yaml… |
Tamaño del Archivo | 544 KB |
Cantidad de Instalaciones | 381 |
Versión Actual | 0.1.0 |
Última Actualización | 2019-09-11 |
Fecha de Publicación | 2019-09-10 |
Calificación | 5.00/5 Total de 4 Calificaciones |
Desarrollador | Vikrant Kandgaonkar |
Tipo de Pago | free |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Open API 3 Github Viewer", "version": "0.1.0", "manifest_version": 2, "icons": { "16": "assets\/favicon-16x16.png", "32": "assets\/favicon-32x32.png", "48": "assets\/favicon.ico" }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*\/*\/blob\/*" ], "js": [ "content.js" ] } ], "browser_action": { "default_title": "Open API 3 Github Viewer" }, "background": { "scripts": [ "background.js" ] }, "permissions": [ "tabs", "background", "storage", "webNavigation", "*:\/\/github.com\/*" ] } |