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…
Wat is Open API 3 Github Viewer?
Open API 3 Github Viewer is een Chrome-extensie ontwikkeld door Vikrant Kandgaonkar, en de belangrijkste functie is "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…".
Extensie Screenshots
Download het CRX-bestand van de extensie Open API 3 Github Viewer
Download Open API 3 Github Viewer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | Open API 3 Github Viewer |
ID | ibejpheeklpjnlgkdpbfcbmflkookgjp |
Officiële URL | https://chromewebstore.google.com/detail/open-api-3-github-viewer/ibejpheeklpjnlgkdpbfcbmflkookgjp |
Beschrijving | 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… |
Bestandsgrootte | 544 KB |
Aantal Installaties | 381 |
Huidige Versie | 0.1.0 |
Laatst Bijgewerkt | 2019-09-11 |
Publicatiedatum | 2019-09-10 |
Beoordeling | 5.00/5 Totaal 4 Beoordelingen |
Ontwikkelaar | Vikrant Kandgaonkar |
Betalingswijze | free |
Ondersteunde Talen | 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\/*" ] } |