Codefresh for Github (BETA)

Edit and test commits of all your branches (including pull requests) from GitHub

Co to jest Codefresh for Github (BETA)?

Codefresh for Github (BETA) to rozszerzenie Chrome opracowane przez Codefresh, a jego główną funkcją jest „Edit and test commits of all your branches (including pull requests) from GitHub”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Codefresh for Github (BETA)

Pobierz pliki rozszerzeń Codefresh for Github (BETA) w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Launch any github repo inside a Docker container in one click! Run, test and commit edits to your code directly on the Docker container.                    

Podstawowe informacje o rozszerzeniu

Nazwa Codefresh for Github (BETA) Codefresh for Github (BETA)
ID bdbdcgnbjmoojfgeolbplollpmobjcge
Oficjalny URL https://chrome.google.com/webstore/detail/codefresh-for-github-beta/bdbdcgnbjmoojfgeolbplollpmobjcge
Opis Edit and test commits of all your branches (including pull requests) from GitHub
Rozmiar pliku 727 KB
Liczba instalacji 24
Aktualna Wersja 0.4.1
Ostatnia Aktualizacja 2015-11-17
Data Publikacji 2015-11-17
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper Codefresh
Typ Płatności free
Strona Rozszerzenia http://codefresh.io
Adres URL Strony Pomocy https://github.com/codefresh-io/beta
Obsługiwane Języki 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"
        ]
    }
}