Clone in VS Code

Clone any GitHub, GitLab or Bitbucket repository in Visual Studio Code

什么是Clone in VS Code?

Clone in VS Code是由https://ahnafmahmud.com开发的Chrome扩展程序,该扩展的主要功能是“Clone any GitHub, GitLab or Bitbucket repository in Visual Studio Code”。

扩展截图

screenshot

下载Clone in VS Code扩展crx文件

下载Clone in VS Code扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        A browser extension to clone any GitHub, GitLab or Bitbucket repository in Visual Studio Code with just one click.

All you need is Visual Studio Code installed on your system for this extension to work. Then just click the extension on any GitHub, GitLab or Bitbucket repo and it will open VS Code where it will take you through the rest of the cloning process.

If you use the Insiders version of VS Code, or prefer to use VSCodium/VSCodium Insiders instead of VS Code, you can change which application the extension opens via the options page.                    

扩展基本信息

名称 Clone in VS Code Clone in VS Code
ID bafggjdhleamglhfhbilngjelbnfblof
官方URL https://chromewebstore.google.com/detail/clone-in-vs-code/bafggjdhleamglhfhbilngjelbnfblof
简介 Clone any GitHub, GitLab or Bitbucket repository in Visual Studio Code
文件大小 11.76 KB
安装次数 314
当前版本 1.3.1
更新时间 2023-12-19
上架时间 2022-08-17
评分 5.00/5 共1次评分
开发者 https://ahnafmahmud.com
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/infinitepower18/clone-in-vscode
帮助页面URL https://github.com/infinitepower18/clone-in-vscode/issues
隐私政策页面URL https://ahnafmahmud.com/apps/CloneInVSCode/PrivacyPolicy.html
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Clone in VS Code",
    "description": "Clone any GitHub, GitLab or Bitbucket repository in Visual Studio Code",
    "version": "1.3.1",
    "manifest_version": 3,
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "action": [],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "author": "Ahnaf Mahmud",
    "homepage_url": "https:\/\/github.com\/infinitepower18\/clone-in-vscode",
    "permissions": [
        "declarativeContent",
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "host_permissions": [
        "https:\/\/github.com\/*",
        "https:\/\/gitlab.com\/*",
        "https:\/\/bitbucket.org\/*"
    ]
}