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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Vikrant Kandgaonkar และคุณลักษณะหลักของมันคือ "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…"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Open API 3 Github Viewer
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
| 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\/*"
]
} | |