Open GitHub in VS Code

Open GitHub repository in VS Code within browser

什么是Open GitHub in VS Code?

Open GitHub in VS Code是由Anton Isaiev开发的Chrome扩展程序,该扩展的主要功能是“Open GitHub repository in VS Code within browser”。

扩展截图

screenshot

下载Open GitHub in VS Code扩展crx文件

下载Open GitHub in VS Code扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Just click on "Open in VS Code" button.

Based on https://github.com/conwnet/github1s

Extension repo: https://github.com/aisaiev/open-github-in-vscode                    

扩展基本信息

名称 Open GitHub in VS Code Open GitHub in VS Code
ID pnhnmmcigmleaooedjnodnioapklfngc
官方URL https://chromewebstore.google.com/detail/open-github-in-vs-code/pnhnmmcigmleaooedjnodnioapklfngc
简介 Open GitHub repository in VS Code within browser
文件大小 30.39 KB
安装次数 1,087
当前版本 1.0
更新时间 2021-02-13
上架时间 2021-02-12
评分 5.00/5 共2次评分
开发者 Anton Isaiev
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Open GitHub in VS Code",
    "short_name": "Open GitHub in VS Code",
    "description": "Open GitHub repository in VS Code within browser",
    "author": "Anton Isaiev",
    "version": "1.0",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "128": "icon.png"
    }
}