GitHub to Code

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

什么是GitHub to Code?

GitHub to Code是由maxchehab开发的Chrome扩展程序,该扩展的主要功能是“Allows developers to open GitHub repositories locally within Visual Studio Code.”。

扩展截图

screenshot
screenshot
screenshot

下载GitHub to Code扩展crx文件

下载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."
        }
    }
}