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 擴展基本資訊
| 名稱 | |
| ID | ibejpheeklpjnlgkdpbfcbmflkookgjp |
| 官方網址 | 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\/*"
]
} | |