Try in Dev Spaces
Adds a button to GitHub that opens projects on Dev Spaces instances.
什麼是Try in Dev Spaces?
Try in Dev Spaces是由Red Hat OpenShift Dev Spaces開發的Chrome擴展程式,該擴展的主要功能是“Adds a button to GitHub that opens projects on Dev Spaces instances.”。
擴展截圖
下載Try in Dev Spaces擴展crx文件
下載Try in Dev Spaces擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
The Try in Dev Spaces extension provides a "Dev Spaces" button for GitHub repository pages, allowing you to create a cloud development environment for your Red Hat OpenShift Dev Spaces installation right from GitHub. Additional Dev Spaces instances can be configured in the extension's options. By default, development environments will be created in the Red Hat Developer Sandbox. Usage of the Red Hat Developer Sandbox is subject to the Red Hat Privacy Statement: https://www.redhat.com/en/about/privacy-policy This project is open source on GitHub under the MIT license: https://github.com/redhat-developer/try-in-dev-spaces-browser-extension What's new for version 1.1.1: Adds the "Dev Spaces" button in the new GitHub UI. What's new for version 1.1.0: GitHub Enterprise support is now available. To configure GitHub Enterprise support: 1. Type "chrome://extensions" in the address bar 2. Find the "Try in Dev Spaces" extension and click on "Details" 3. Click on "Extension options" located near the bottom of the page 4. Click on the "GitHub Enterprise domains" tab 5. Enter your GitHub Enterprise domain (ex. https://github.example.com) 6. Accept the permission prompt. The permission is required to allow the extension to insert the "Dev Spaces" button within the GitHub webpage. 7. Navigate to a GitHub project within your GitHub Enterprise instance to see the new "Dev Spaces" button.
擴展基本資訊
名稱 | Try in Dev Spaces |
ID | gbookaeilomckmoofeocnkfidfeendan |
官方網址 | https://chromewebstore.google.com/detail/try-in-dev-spaces/gbookaeilomckmoofeocnkfidfeendan |
簡介 | Adds a button to GitHub that opens projects on Dev Spaces instances. |
檔案大小 | 2.57 MB |
安裝次數 | 142 |
目前版本 | 1.1.1 |
更新時間 | 2024-01-13 |
上架時間 | 2023-06-01 |
評分 | 5.00/5 共 1 次評分 |
開發者 | Red Hat OpenShift Dev Spaces |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://redhat-developer.github.io/try-in-dev-spaces-browser-extension/ |
說明頁面URL | https://github.com/redhat-developer/try-in-dev-spaces-browser-extension/issues |
支援的語言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Adds a button to GitHub that opens projects on Dev Spaces instances.", "version": "1.1.1", "manifest_version": 3, "name": "Try in Dev Spaces", "optional_host_permissions": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "host_permissions": [ "https:\/\/github.com\/*" ], "background": { "service_worker": "backgroundScript.bundle.js" }, "permissions": [ "storage", "scripting" ], "options_ui": { "page": "options.html", "open_in_tab": false }, "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" } } |