Codefresh for Github (BETA)

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

Что такое Codefresh for Github (BETA)?

Codefresh for Github (BETA) - это расширение Chrome, разработанное Codefresh, и его основная функция - "Edit and test commits of all your branches (including pull requests) from GitHub".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Codefresh for Github (BETA)

Скачайте файлы расширений Codefresh for Github (BETA) в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

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

Основная информация о расширении

Название Codefresh for Github (BETA) Codefresh for Github (BETA)
ID bdbdcgnbjmoojfgeolbplollpmobjcge
Официальный URL https://chrome.google.com/webstore/detail/codefresh-for-github-beta/bdbdcgnbjmoojfgeolbplollpmobjcge
Описание Edit and test commits of all your branches (including pull requests) from GitHub
Размер файла 727 KB
Количество установок 24
Текущая Версия 0.4.1
Последнее Обновление 2015-11-17
Дата публикации 2015-11-17
Рейтинг 5.00/5 Всего 2 оценок
Разработчик Codefresh
Тип оплаты free
Официальный сайт расширения http://codefresh.io
URL страницы помощи https://github.com/codefresh-io/beta
Поддерживаемые языки 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"
        ]
    }
}