DevSpaces - Dev Environments in EYK
Describe your dev environment as code and get fully prebuilt dev environments for any GitLab, GitHub and Bitbucket project.
什么是DevSpaces - Dev Environments in EYK?
DevSpaces - Dev Environments in EYK是由https://devfactory.com开发的Chrome扩展程序,该扩展的主要功能是“Describe your dev environment as code and get fully prebuilt dev environments for any GitLab, GitHub and Bitbucket project.”。
扩展截图
下载DevSpaces - Dev Environments in EYK扩展crx文件
下载DevSpaces - Dev Environments in EYK扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
DevSpaces allows developers to launch github code in a container based IDE and get started with developing code in seconds. No more downloading code to the local machine and setting up a local environment to get started.
扩展基本信息
名称 | DevSpaces - Dev Environments in EYK |
ID | dmbijlfedfamdpenajngckdlehjighfi |
官方URL | https://chromewebstore.google.com/detail/devspaces-dev-environment/dmbijlfedfamdpenajngckdlehjighfi |
简介 | Describe your dev environment as code and get fully prebuilt dev environments for any GitLab, GitHub and Bitbucket project. |
文件大小 | 43.31 KB |
安装次数 | 314 |
当前版本 | 1.7 |
更新时间 | 2020-10-14 |
上架时间 | 2020-10-06 |
评分 | 5.00/5 共2次评分 |
开发者 | https://devfactory.com |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | http://devgraph.com/devspaces |
隐私政策页面URL | https://devfactory.com/privacy-policy |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "DevSpaces - Dev Environments in EYK", "short_name": "DevSpaces", "version": "1.7", "description": "Describe your dev environment as code and get fully prebuilt dev environments for any GitLab, GitHub and Bitbucket project.", "icons": { "16": "icons\/devspaces_16x16_trans_bg-01.png", "48": "icons\/devspaces_48x48_trans_bg-01.png", "128": "icons\/devspaces_128x128_trans_bg-01.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.github.com\/*", "*:\/\/*.gitlab.com\/*", "*:\/\/*.bitbucket.org\/*", "*:\/\/*.gitpod.io\/*", "*:\/\/*.web-ide.devfactory.com\/*", "*:\/\/*.trilogy.devspaces.com\/*" ], "js": [ "dist\/bundles\/gitpodify.bundle.js" ] } ], "browser_action": { "default_icon": { "16": "icons\/devspaces_16x16_trans_bg-01.png", "48": "icons\/devspaces_48x48_trans_bg-01.png", "128": "icons\/devspaces_128x128_trans_bg-01.png" }, "default_title": "DevSpaces" }, "background": { "scripts": [ "dist\/bundles\/background.bundle.js" ] }, "options_ui": { "page": "src\/options\/options.html" }, "permissions": [ "activeTab", "storage" ] } |