VS Code

Open GitHub and Azure Repos repositories in vscode.dev from the address bar

VS Codeとは何ですか?

VS CodeはMicrosoftによって開発されたChromeの拡張機能で、その主な機能は「Open GitHub and Azure Repos repositories in vscode.dev from the address bar」です。

拡張機能のスクリーンショット

screenshot
screenshot

VS Code拡張機能のCRXファイルをダウンロード

VS Code拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        https://vscode.dev allows you to use Visual Studio Code in your browser.

This extension allows you to quickly get to any GitHub repository in https://vscode.dev. Simply type `code` to trigger the omnibox and open your recent GitHub repositories in vscode.dev. 

Alternatively, use the extension's Ctrl+. shortcut to open a GitHub pr Azure Repos repository page in https://vscode.dev, or click the extension icon.

By installing this extension, you agree to these terms and conditions:

Terms of Use: https://www.microsoft.com/en-us/legal/terms-of-use
Privacy Policy: https://privacy.microsoft.com/en-US/privacystatement                    

拡張機能の基本情報

名前 VS Code VS Code
ID kobakmhnkfaghloikphojodjebdelppk
公式URL https://chromewebstore.google.com/detail/vs-code/kobakmhnkfaghloikphojodjebdelppk
説明 Open GitHub and Azure Repos repositories in vscode.dev from the address bar
ファイルサイズ 3.07 MB
インストール数 20,000
現在のバージョン 2.6
最終更新日 2023-03-30
公開日 2022-09-03
評価 4.38/5 合計 8 レビュー
開発者 Microsoft
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://vscode.dev
ヘルプページのURL https://github.com/microsoft/vscode-dev-chrome-launcher/issues
プライバシーポリシーページのURL https://aka.ms/privacy
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "VS Code",
    "version": "2.6",
    "description": "Open GitHub and Azure Repos repositories in vscode.dev from the address bar",
    "action": {
        "default_icon": "vscode.png"
    },
    "background": {
        "service_worker": "eventPage.js"
    },
    "icons": {
        "16": "vscode.png",
        "48": "vscode.png",
        "128": "vscode.png"
    },
    "commands": {
        "launchVSCode": {
            "suggested_key": {
                "default": "Ctrl+Period",
                "mac": "Command+Period"
            },
            "description": "Launch vscode.dev"
        }
    },
    "options_ui": {
        "page": "options.html"
    },
    "permissions": [
        "tabs",
        "history",
        "storage"
    ],
    "omnibox": {
        "keyword": "code"
    }
}