Monokle Cloud Chrome Extension
Integrates actions for discovering and exploring Kubernetes resources with Monokle Cloud into the GitHub User Interface
Wat is Monokle Cloud Chrome Extension?
Monokle Cloud Chrome Extension is een Chrome-extensie ontwikkeld door chrome-dev, en de belangrijkste functie is "Integrates actions for discovering and exploring Kubernetes resources with Monokle Cloud into the GitHub User Interface".
Extensie Screenshots
Download het CRX-bestand van de extensie Monokle Cloud Chrome Extension
Download Monokle Cloud Chrome Extension-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Monokle Cloud Chrome Extension |
ID | loojojkleiolidaodalflgbmaijeibob |
Officiële URL | https://chromewebstore.google.com/detail/monokle-cloud-chrome-exte/loojojkleiolidaodalflgbmaijeibob |
Beschrijving | Integrates actions for discovering and exploring Kubernetes resources with Monokle Cloud into the GitHub User Interface |
Bestandsgrootte | 79.31 KB |
Aantal Installaties | 99 |
Huidige Versie | 0.0.1 |
Laatst Bijgewerkt | 2022-10-25 |
Publicatiedatum | 2022-10-24 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | chrome-dev |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/kubeshop/monokle-chrome-extension |
Help Pagina-URL | https://github.com/kubeshop/monokle-chrome-extension/issues |
URL van de Privacybeleid Pagina | https://kubeshop.io/privacy |
Ondersteunde Talen | 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": [] } |