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…
Open API 3 Github Viewerとは何ですか?
Open API 3 Github ViewerはVikrant Kandgaonkarによって開発されたChromeの拡張機能で、その主な機能は「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…」です。
拡張機能のスクリーンショット
Open API 3 Github Viewer拡張機能のCRXファイルをダウンロード
Open API 3 Github Viewer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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
拡張機能の基本情報
名前 | Open API 3 Github Viewer |
ID | ibejpheeklpjnlgkdpbfcbmflkookgjp |
公式URL | https://chromewebstore.google.com/detail/open-api-3-github-viewer/ibejpheeklpjnlgkdpbfcbmflkookgjp |
説明 | 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… |
ファイルサイズ | 544 KB |
インストール数 | 381 |
現在のバージョン | 0.1.0 |
最終更新日 | 2019-09-11 |
公開日 | 2019-09-10 |
評価 | 5.00/5 合計 4 レビュー |
開発者 | Vikrant Kandgaonkar |
支払い方法 | free |
対応言語 | 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\/*" ] } |