DevSpaces - Dev Environments in EYK
Describe your dev environment as code and get fully prebuilt dev environments for any GitLab, GitHub and Bitbucket project.
Cos'è DevSpaces - Dev Environments in EYK?
DevSpaces - Dev Environments in EYK è un'estensione di Chrome sviluppata da https://devfactory.com, e la sua funzione principale è "Describe your dev environment as code and get fully prebuilt dev environments for any GitLab, GitHub and Bitbucket project.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione DevSpaces - Dev Environments in EYK
Scarica i file di estensione DevSpaces - Dev Environments in EYK in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | dmbijlfedfamdpenajngckdlehjighfi |
| URL Ufficiale | https://chromewebstore.google.com/detail/devspaces-dev-environment/dmbijlfedfamdpenajngckdlehjighfi |
| Descrizione | Describe your dev environment as code and get fully prebuilt dev environments for any GitLab, GitHub and Bitbucket project. |
| Dimensione del File | 43.31 KB |
| Conteggio Installazioni | 314 |
| Versione Corrente | 1.7 |
| Ultimo Aggiornamento | 2020-10-14 |
| Data di Pubblicazione | 2020-10-06 |
| Valutazione | 5.00/5 Totale 2 Valutazioni |
| Sviluppatore | https://devfactory.com |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | http://devgraph.com/devspaces |
| URL della Pagina della Politica sulla Privacy | https://devfactory.com/privacy-policy |
| Lingue Supportate | 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"
]
} | |