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
官方網址 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\/*"
    ]
}