Monokle Cloud Chrome Extension
Integrates actions for discovering and exploring Kubernetes resources with Monokle Cloud into the GitHub User Interface
Cos'è Monokle Cloud Chrome Extension?
Monokle Cloud Chrome Extension è un'estensione di Chrome sviluppata da chrome-dev, e la sua funzione principale è "Integrates actions for discovering and exploring Kubernetes resources with Monokle Cloud into the GitHub User Interface".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Monokle Cloud Chrome Extension
Scarica i file di estensione Monokle Cloud Chrome Extension in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Monokle Cloud Chrome Extension |
ID | loojojkleiolidaodalflgbmaijeibob |
URL Ufficiale | https://chromewebstore.google.com/detail/monokle-cloud-chrome-exte/loojojkleiolidaodalflgbmaijeibob |
Descrizione | Integrates actions for discovering and exploring Kubernetes resources with Monokle Cloud into the GitHub User Interface |
Dimensione del File | 79.31 KB |
Conteggio Installazioni | 99 |
Versione Corrente | 0.0.1 |
Ultimo Aggiornamento | 2022-10-25 |
Data di Pubblicazione | 2022-10-24 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | chrome-dev |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/kubeshop/monokle-chrome-extension |
URL della Pagina di Aiuto | https://github.com/kubeshop/monokle-chrome-extension/issues |
URL della Pagina della Politica sulla Privacy | https://kubeshop.io/privacy |
Lingue Supportate | 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": [] } |