Clone in VS Code

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

Co to jest Clone in VS Code?

Clone in VS Code to rozszerzenie Chrome opracowane przez https://ahnafmahmud.com, a jego główną funkcją jest „Clone any GitHub, GitLab or Bitbucket repository in Visual Studio Code”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Clone in VS Code

Pobierz pliki rozszerzeń Clone in VS Code w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Clone in VS Code Clone in VS Code
ID bafggjdhleamglhfhbilngjelbnfblof
Oficjalny URL https://chromewebstore.google.com/detail/clone-in-vs-code/bafggjdhleamglhfhbilngjelbnfblof
Opis Clone any GitHub, GitLab or Bitbucket repository in Visual Studio Code
Rozmiar pliku 11.76 KB
Liczba instalacji 314
Aktualna Wersja 1.3.1
Ostatnia Aktualizacja 2023-12-19
Data Publikacji 2022-08-17
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper https://ahnafmahmud.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/infinitepower18/clone-in-vscode
Adres URL Strony Pomocy https://github.com/infinitepower18/clone-in-vscode/issues
Adres URL Strony Polityki Prywatności https://ahnafmahmud.com/apps/CloneInVSCode/PrivacyPolicy.html
Obsługiwane Języki 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\/*"
    ]
}