Monokle Cloud Chrome Extension
Integrates actions for discovering and exploring Kubernetes resources with Monokle Cloud into the GitHub User Interface
What is Monokle Cloud Chrome Extension?
Monokle Cloud Chrome Extension is a Chrome extension developed by chrome-dev, and its main feature is "Integrates actions for discovering and exploring Kubernetes resources with Monokle Cloud into the GitHub User Interface".
Extension Screenshots
Download Monokle Cloud Chrome Extension Extension CRX File
Download Monokle Cloud Chrome Extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Monokle Cloud Chrome Extension |
ID | loojojkleiolidaodalflgbmaijeibob |
Official URL | https://chromewebstore.google.com/detail/monokle-cloud-chrome-exte/loojojkleiolidaodalflgbmaijeibob |
Description | Integrates actions for discovering and exploring Kubernetes resources with Monokle Cloud into the GitHub User Interface |
File Size | 79.31 KB |
Installation Count | 99 |
Current Version | 0.0.1 |
Last Updated | 2022-10-25 |
Publish Date | 2022-10-24 |
Rating | 5.00/5 Total 1 Ratings |
Developer | chrome-dev |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/kubeshop/monokle-chrome-extension |
Help Page URL | https://github.com/kubeshop/monokle-chrome-extension/issues |
Privacy Policy Page URL | https://kubeshop.io/privacy |
Supported Languages | 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": [] } |