Monokle Cloud Chrome Extension
Integrates actions for discovering and exploring Kubernetes resources with Monokle Cloud into the GitHub User Interface
Was ist Monokle Cloud Chrome Extension?
Monokle Cloud Chrome Extension ist eine Chrome-Erweiterung, die von chrome-dev entwickelt wurde, und ihr Hauptmerkmal ist "Integrates actions for discovering and exploring Kubernetes resources with Monokle Cloud into the GitHub User Interface".
Erweiterungsscreenshots
Monokle Cloud Chrome Extension-Erweiterungs-CRX-Datei herunterladen
Laden Sie Monokle Cloud Chrome Extension-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
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.
Grundlegende Informationen zur Erweiterung
Name | Monokle Cloud Chrome Extension |
ID | loojojkleiolidaodalflgbmaijeibob |
Offizielle URL | https://chromewebstore.google.com/detail/monokle-cloud-chrome-exte/loojojkleiolidaodalflgbmaijeibob |
Beschreibung | Integrates actions for discovering and exploring Kubernetes resources with Monokle Cloud into the GitHub User Interface |
Dateigröße | 79.31 KB |
Installationsanzahl | 99 |
Aktuelle Version | 0.0.1 |
Letztes Update | 2022-10-25 |
Veröffentlichungsdatum | 2022-10-24 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | chrome-dev |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/kubeshop/monokle-chrome-extension |
Hilfeseite URL | https://github.com/kubeshop/monokle-chrome-extension/issues |
URL der Datenschutzrichtlinien-Seite | https://kubeshop.io/privacy |
Unterstützte Sprachen | 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": [] } |