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