Monokle Cloud Chrome Extension
Integrates actions for discovering and exploring Kubernetes resources with Monokle Cloud into the GitHub User Interface
Что такое Monokle Cloud Chrome Extension?
Monokle Cloud Chrome Extension - это расширение Chrome, разработанное chrome-dev, и его основная функция - "Integrates actions for discovering and exploring Kubernetes resources with Monokle Cloud into the GitHub User Interface".
Снимки экрана расширения
Скачать файл CRX расширения Monokle Cloud Chrome Extension
Скачайте файлы расширений Monokle Cloud Chrome Extension в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | Monokle Cloud Chrome Extension |
ID | loojojkleiolidaodalflgbmaijeibob |
Официальный URL | https://chromewebstore.google.com/detail/monokle-cloud-chrome-exte/loojojkleiolidaodalflgbmaijeibob |
Описание | Integrates actions for discovering and exploring Kubernetes resources with Monokle Cloud into the GitHub User Interface |
Размер файла | 79.31 KB |
Количество установок | 99 |
Текущая Версия | 0.0.1 |
Последнее Обновление | 2022-10-25 |
Дата публикации | 2022-10-24 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | chrome-dev |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/kubeshop/monokle-chrome-extension |
URL страницы помощи | https://github.com/kubeshop/monokle-chrome-extension/issues |
URL страницы политики конфиденциальности | https://kubeshop.io/privacy |
Поддерживаемые языки | 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": [] } |