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
官方網址 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
電子郵箱 [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"
    }
}