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…
Cos'è Open API 3 Github Viewer?
Open API 3 Github Viewer è un'estensione di Chrome sviluppata da Vikrant Kandgaonkar, e la sua funzione principale è "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…".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Open API 3 Github Viewer
Scarica i file di estensione Open API 3 Github Viewer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Open API 3 Github Viewer |
ID | ibejpheeklpjnlgkdpbfcbmflkookgjp |
URL Ufficiale | https://chromewebstore.google.com/detail/open-api-3-github-viewer/ibejpheeklpjnlgkdpbfcbmflkookgjp |
Descrizione | 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… |
Dimensione del File | 544 KB |
Conteggio Installazioni | 381 |
Versione Corrente | 0.1.0 |
Ultimo Aggiornamento | 2019-09-11 |
Data di Pubblicazione | 2019-09-10 |
Valutazione | 5.00/5 Totale 4 Valutazioni |
Sviluppatore | Vikrant Kandgaonkar |
Tipo di Pagamento | free |
Lingue Supportate | 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\/*" ] } |