DevSpaces - Dev Environments in EYK
Describe your dev environment as code and get fully prebuilt dev environments for any GitLab, GitHub and Bitbucket project.
Vad är DevSpaces - Dev Environments in EYK?
DevSpaces - Dev Environments in EYK är en Chrome-tillägg utvecklad av https://devfactory.com, och dess huvudfunktion är "Describe your dev environment as code and get fully prebuilt dev environments for any GitLab, GitHub and Bitbucket project.".
Tilläggsskärmbilder
Ladda ner DevSpaces - Dev Environments in EYK-förlängningens CRX-fil
Ladda ner DevSpaces - Dev Environments in EYK-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | DevSpaces - Dev Environments in EYK |
ID | dmbijlfedfamdpenajngckdlehjighfi |
Officiell webbadress | https://chromewebstore.google.com/detail/devspaces-dev-environment/dmbijlfedfamdpenajngckdlehjighfi |
Beskrivning | Describe your dev environment as code and get fully prebuilt dev environments for any GitLab, GitHub and Bitbucket project. |
Filstorlek | 43.31 KB |
Antal Installationer | 314 |
Aktuell Version | 1.7 |
Senast Uppdaterad | 2020-10-14 |
Publiceringsdatum | 2020-10-06 |
Betyg | 5.00/5 Totalt 2 Betyg |
Utvecklare | https://devfactory.com |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | http://devgraph.com/devspaces |
URL till Sekretesspolicy Sidan | https://devfactory.com/privacy-policy |
Stödda Språk | 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" ] } |