VS Code

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

VS Code là gì?

VS Code là một tiện ích mở rộng Chrome được phát triển bởi Microsoft, và tính năng chính của nó là "Open GitHub and Azure Repos repositories in vscode.dev from the address bar".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng VS Code

Tải xuống các tệp mở rộng VS Code dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên VS Code VS Code
ID kobakmhnkfaghloikphojodjebdelppk
URL Chính Thức https://chromewebstore.google.com/detail/vs-code/kobakmhnkfaghloikphojodjebdelppk
Mô tả Open GitHub and Azure Repos repositories in vscode.dev from the address bar
Kích Thước Tệp 3.07 MB
Số Lần Cài Đặt 20,000
Phiên Bản Hiện Tại 2.6
Cập Nhật Lần Cuối 2023-03-30
Ngày Phát Hành 2022-09-03
Đánh Giá 4.38/5 Tổng số 8 Đánh Giá
Nhà Phát Triển Microsoft
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://vscode.dev
URL Trang Trợ Giúp https://github.com/microsoft/vscode-dev-chrome-launcher/issues
URL Trang Chính Sách Bảo Mật https://aka.ms/privacy
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}