Gitlab Git Clone

Adds 'git clone' to the ssh/https clone url, so you simply can copy and paste it into your terminal.

Co to jest Gitlab Git Clone?

Gitlab Git Clone to rozszerzenie Chrome opracowane przez pt1602schannel, a jego główną funkcją jest „Adds 'git clone' to the ssh/https clone url, so you simply can copy and paste it into your terminal.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Gitlab Git Clone

Pobierz pliki rozszerzeń Gitlab Git Clone 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

                        This is extension is NOT officially from the gitlab team. 

Contribute: https://github.com/pt1602/gitlab-git-clone                    

Podstawowe informacje o rozszerzeniu

Nazwa Gitlab Git Clone Gitlab Git Clone
ID niofneadkfofccgnfmofgpbppfhbkgmg
Oficjalny URL https://chromewebstore.google.com/detail/gitlab-git-clone/niofneadkfofccgnfmofgpbppfhbkgmg
Opis Adds 'git clone' to the ssh/https clone url, so you simply can copy and paste it into your terminal.
Rozmiar pliku 44.55 KB
Liczba instalacji 62
Aktualna Wersja 1.6
Ostatnia Aktualizacja 2024-02-15
Data Publikacji 2022-06-09
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper pt1602schannel
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/pt1602/gitlab-git-clone
Adres URL Strony Pomocy https://github.com/pt1602/gitlab-git-clone/issues
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gitlab Git Clone",
    "description": "Adds 'git clone' to the ssh\/https clone url, so you simply can copy and paste it into your terminal.",
    "version": "1.6",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "js\/frontend.js"
            ]
        }
    ],
    "icons": {
        "16": "assets\/icons\/gitlab-git-clone-logo16x.png",
        "48": "assets\/icons\/gitlab-git-clone-logo48x.png",
        "128": "assets\/icons\/gitlab-git-clone-logo.png"
    },
    "action": {
        "default_popup": "default_popup\/index.html"
    },
    "options_page": "options_page\/index.html",
    "permissions": [
        "storage"
    ]
}