Dev Environments
Quickly run pre-configured, containerized development environments!
What is Dev Environments?
Dev Environments is a Chrome extension developed by Docker, Inc., and its main feature is "Quickly run pre-configured, containerized development environments!".
Extension Screenshots
Download Dev Environments Extension CRX File
Download Dev Environments 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
Allows you to quickly jump from a Git repository, branch or PR to a local development environment with the tools you need to test and run your workload — using Dev Environments — by adding a button to Github, Bitbucket and Gitlab, in your browser.
Requires:
- Docker Desktop version 4.12 or higher
Contributing
We welcome contributions! The source code for this extension is available at https://github.com/docker/dev-envs-extension/
Issues
Please submit issues over https://github.com/docker/dev-envs-extension/issues Extension Basic Information
| Name | |
| ID | gnagpachnalcofcblcgdbofnfakdbeka |
| Official URL | https://chromewebstore.google.com/detail/dev-environments/gnagpachnalcofcblcgdbofnfakdbeka |
| Description | Quickly run pre-configured, containerized development environments! |
| File Size | 11.57 KB |
| Installation Count | 1,179 |
| Current Version | 0.1.4 |
| Last Updated | 2022-12-20 |
| Publish Date | 2022-12-19 |
| Rating | 5.00/5 Total 1 Ratings |
| Developer | Docker, Inc. |
| [email protected] | |
| Payment Type | free |
| Extension Website | https://www.docker.com/ |
| Help Page URL | https://github.com/docker/dev-envs-extension/issues |
| Supported Languages | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Dev Environments",
"short_name": "Dev Environments",
"description": "Quickly run pre-configured, containerized development environments!",
"version": "0.1.4",
"icons": {
"48": "icons\/icon_devenvs.png",
"96": "icons\/icon_devenvs.png",
"128": "icons\/icon_devenvs.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.github.com\/*",
"*:\/\/*.bitbucket.org\/*",
"*:\/\/*.gitlab.com\/*"
],
"js": [
"dist\/devEnvs.js"
],
"css": [
"css\/style.css"
]
}
]
} | |