Monokle Cloud Chrome Extension
Integrates actions for discovering and exploring Kubernetes resources with Monokle Cloud into the GitHub User Interface
Monokle Cloud Chrome Extensionคืออะไร?
Monokle Cloud Chrome Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย chrome-dev และคุณลักษณะหลักของมันคือ "Integrates actions for discovering and exploring Kubernetes resources with Monokle Cloud into the GitHub User Interface"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Monokle Cloud Chrome Extension
ดาวน์โหลดไฟล์ส่วนขยาย Monokle Cloud Chrome Extension ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Monokle Cloud helps Developers, DevOps and Platform Engineers improve the quality of their Kubernetes deployments by providing a unified visual tool for authoring, analysis and deployment of Kubernetes configurations. The Monokle Cloud Chrome Extension integrates actions into the GitHub user interface to enable discovery and analysis of Kubernetes resources in your projects from within GitHub - improving your workflows and boosting productivity.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Monokle Cloud Chrome Extension |
ID | loojojkleiolidaodalflgbmaijeibob |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/monokle-cloud-chrome-exte/loojojkleiolidaodalflgbmaijeibob |
คำอธิบาย | Integrates actions for discovering and exploring Kubernetes resources with Monokle Cloud into the GitHub User Interface |
ขนาดไฟล์ | 79.31 KB |
จำนวนการติดตั้ง | 99 |
เวอร์ชันปัจจุบัน | 0.0.1 |
อัปเดตครั้งล่าสุด | 2022-10-25 |
วันที่เผยแพร่ | 2022-10-24 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | chrome-dev |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/kubeshop/monokle-chrome-extension |
URL หน้าช่วยเหลือ | https://github.com/kubeshop/monokle-chrome-extension/issues |
URL หน้านโยบายความเป็นส่วนตัว | https://kubeshop.io/privacy |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Monokle Cloud Chrome Extension", "short_name": "Monokle Cloud", "version": "0.0.1", "description": "Integrates actions for discovering and exploring Kubernetes resources with Monokle Cloud into the GitHub User Interface", "homepage_url": "https:\/\/github.com\/kubeshop\/monokle-chrome-extension", "icons": { "256": "images\/large-icon-256.png" }, "action": { "default_icon": { "16": "images\/small-icon-16.png", "24": "images\/small-icon-24.png", "32": "images\/large-icon-32.png" }, "default_title": "Monokle Cloud", "default_popup": "popup.html" }, "content_scripts": [ { "js": [ "extension.js" ], "matches": [ "https:\/\/github.com\/*" ], "css": [ "extension.css" ] } ], "permissions": [] } |