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
电子邮箱 [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"
    }
}