Monokle Cloud Chrome Extension
Integrates actions for discovering and exploring Kubernetes resources with Monokle Cloud into the GitHub User Interface
Hvad er Monokle Cloud Chrome Extension?
Monokle Cloud Chrome Extension er en Chrome-udvidelse udviklet af chrome-dev, og dens hovedfunktion er "Integrates actions for discovering and exploring Kubernetes resources with Monokle Cloud into the GitHub User Interface".
Udvidelsesskærmbilleder
Download Monokle Cloud Chrome Extension-udvidelses-CRX-fil
Download Monokle Cloud Chrome Extension-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | Monokle Cloud Chrome Extension |
ID | loojojkleiolidaodalflgbmaijeibob |
Officiel URL | https://chromewebstore.google.com/detail/monokle-cloud-chrome-exte/loojojkleiolidaodalflgbmaijeibob |
Beskrivelse | Integrates actions for discovering and exploring Kubernetes resources with Monokle Cloud into the GitHub User Interface |
Filstørrelse | 79.31 KB |
Antal Installationer | 99 |
Nuværende Version | 0.0.1 |
Senest Opdateret | 2022-10-25 |
Udgivelsesdato | 2022-10-24 |
Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
Udvikler | chrome-dev |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/kubeshop/monokle-chrome-extension |
Hjælpeside-URL | https://github.com/kubeshop/monokle-chrome-extension/issues |
URL til Fortrolighedspolitik Side | https://kubeshop.io/privacy |
Understøttede Sprog | 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": [] } |