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…
Was ist Open API 3 Github Viewer?
Open API 3 Github Viewer ist eine Chrome-Erweiterung, die von Vikrant Kandgaonkar entwickelt wurde, und ihr Hauptmerkmal ist "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…".
Erweiterungsscreenshots
Open API 3 Github Viewer-Erweiterungs-CRX-Datei herunterladen
Laden Sie Open API 3 Github Viewer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | ibejpheeklpjnlgkdpbfcbmflkookgjp |
| Offizielle URL | https://chromewebstore.google.com/detail/open-api-3-github-viewer/ibejpheeklpjnlgkdpbfcbmflkookgjp |
| Beschreibung | 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… |
| Dateigröße | 544 KB |
| Installationsanzahl | 381 |
| Aktuelle Version | 0.1.0 |
| Letztes Update | 2019-09-11 |
| Veröffentlichungsdatum | 2019-09-10 |
| Bewertung | 5.00/5 Insgesamt 4 Bewertungen |
| Entwickler | Vikrant Kandgaonkar |
| Zahlungsart | free |
| Unterstützte Sprachen | 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\/*"
]
} | |