GitHub to Code

Allows developers to open GitHub repositories locally within Visual Studio Code.

Что такое GitHub to Code?

GitHub to Code - это расширение Chrome, разработанное maxchehab, и его основная функция - "Allows developers to open GitHub repositories locally within Visual Studio Code.".

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

screenshot
screenshot
screenshot

Скачать файл CRX расширения GitHub to Code

Скачайте файлы расширений GitHub to Code в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

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

                        Features: 
- Custom keyboard shortcut
- Fast setup
- Open from file page, inline markdown, or a code review                    

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

Название GitHub to Code GitHub to Code
ID nmhejamhnhhhegjaalgklaeeladhkaph
Официальный URL https://chrome.google.com/webstore/detail/github-to-code/nmhejamhnhhhegjaalgklaeeladhkaph
Описание Allows developers to open GitHub repositories locally within Visual Studio Code.
Размер файла 6.05 MB
Количество установок 139
Текущая Версия 0.0.4
Последнее Обновление 2019-10-08
Дата публикации 2019-10-08
Рейтинг 5.00/5 Всего 2 оценок
Разработчик maxchehab
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/maxchehab/gh-code
URL страницы помощи https://github.com/maxchehab/gh-code
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GitHub to Code",
    "version": "0.0.4",
    "description": "Allows developers to open GitHub repositories locally within Visual Studio Code.",
    "icons": {
        "48": "icons\/code-logo.png"
    },
    "applications": {
        "gecko": {
            "id": "{b58eb207-8f2e-41ce-a28e-3046f1e92a5f}"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.github.com\/*"
            ],
            "js": [
                ".\/common\/utils\/polyfill.util.js",
                ".\/extension\/content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "contextMenus",
        "storage",
        "tabs",
        ""
    ],
    "web_accessible_resources": [
        "icons\/code-logo.png",
        "next\/out\/*"
    ],
    "background": {
        "scripts": [
            ".\/common\/utils\/polyfill.util.js",
            ".\/extension\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icons\/code-logo.png",
        "default_title": "Github to Code",
        "default_popup": "next\/out\/index.html",
        "browser_style": true
    },
    "commands": {
        "open-repo-or-file": {
            "suggested_key": {
                "default": "Ctrl+G",
                "mac": "MacCtrl+G"
            },
            "description": "Open current repository or file."
        }
    }
}