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
Eメール [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"
    }
}