Monokle Cloud Chrome Extension
Integrates actions for discovering and exploring Kubernetes resources with Monokle Cloud into the GitHub User Interface
Co to jest Monokle Cloud Chrome Extension?
Monokle Cloud Chrome Extension to rozszerzenie Chrome opracowane przez chrome-dev, a jego główną funkcją jest „Integrates actions for discovering and exploring Kubernetes resources with Monokle Cloud into the GitHub User Interface”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Monokle Cloud Chrome Extension
Pobierz pliki rozszerzeń Monokle Cloud Chrome Extension w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Monokle Cloud Chrome Extension |
ID | loojojkleiolidaodalflgbmaijeibob |
Oficjalny URL | https://chromewebstore.google.com/detail/monokle-cloud-chrome-exte/loojojkleiolidaodalflgbmaijeibob |
Opis | Integrates actions for discovering and exploring Kubernetes resources with Monokle Cloud into the GitHub User Interface |
Rozmiar pliku | 79.31 KB |
Liczba instalacji | 99 |
Aktualna Wersja | 0.0.1 |
Ostatnia Aktualizacja | 2022-10-25 |
Data Publikacji | 2022-10-24 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | chrome-dev |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/kubeshop/monokle-chrome-extension |
Adres URL Strony Pomocy | https://github.com/kubeshop/monokle-chrome-extension/issues |
Adres URL Strony Polityki Prywatności | https://kubeshop.io/privacy |
Obsługiwane Języki | 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": [] } |