Codefresh for Github (BETA)
Edit and test commits of all your branches (including pull requests) from GitHub
What is Codefresh for Github (BETA)?
Codefresh for Github (BETA) is a Chrome extension developed by Codefresh, and its main feature is "Edit and test commits of all your branches (including pull requests) from GitHub".
Extension Screenshots
Download Codefresh for Github (BETA) Extension CRX File
Download Codefresh for Github (BETA) 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
Launch any github repo inside a Docker container in one click! Run, test and commit edits to your code directly on the Docker container. Extension Basic Information
| Name | |
| ID | bdbdcgnbjmoojfgeolbplollpmobjcge |
| Official URL | https://chrome.google.com/webstore/detail/codefresh-for-github-beta/bdbdcgnbjmoojfgeolbplollpmobjcge |
| Description | Edit and test commits of all your branches (including pull requests) from GitHub |
| File Size | 727 KB |
| Installation Count | 24 |
| Current Version | 0.4.1 |
| Last Updated | 2015-11-17 |
| Publish Date | 2015-11-17 |
| Rating | 5.00/5 Total 2 Ratings |
| Developer | Codefresh |
| Payment Type | free |
| Extension Website | http://codefresh.io |
| Help Page URL | https://github.com/codefresh-io/beta |
| Supported Languages | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Codefresh for Github (BETA)",
"version": "0.4.1",
"description": "Edit and test commits of all your branches (including pull requests) from GitHub",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"web_accessible_resources": [
"icon16.png"
],
"permissions": [
"storage",
"cookies",
"webNavigation",
"*:\/\/*.codefresh.io\/*",
"tabs"
],
"browser_action": {
"default_icon": "icon16.png",
"default_popup": "menu.html",
"default_title": "Codefresh"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.github.com\/*"
],
"css": [
"css\/content.css"
],
"js": [
"js\/content.js"
]
}
],
"background": {
"persistent": false,
"scripts": [
"js\/events.js"
]
}
} | |