Gitlab Git Clone

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

Cos'è Gitlab Git Clone?

Gitlab Git Clone è un'estensione di Chrome sviluppata da pt1602schannel, e la sua funzione principale è "Adds 'git clone' to the ssh/https clone url, so you simply can copy and paste it into your terminal.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Gitlab Git Clone

Scarica i file di estensione Gitlab Git Clone in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        This is extension is NOT officially from the gitlab team. 

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

Informazioni di Base sull'Estensione

Nome Gitlab Git Clone Gitlab Git Clone
ID niofneadkfofccgnfmofgpbppfhbkgmg
URL Ufficiale https://chromewebstore.google.com/detail/gitlab-git-clone/niofneadkfofccgnfmofgpbppfhbkgmg
Descrizione Adds 'git clone' to the ssh/https clone url, so you simply can copy and paste it into your terminal.
Dimensione del File 44.55 KB
Conteggio Installazioni 62
Versione Corrente 1.6
Ultimo Aggiornamento 2024-02-15
Data di Pubblicazione 2022-06-09
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore pt1602schannel
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/pt1602/gitlab-git-clone
URL della Pagina di Aiuto https://github.com/pt1602/gitlab-git-clone/issues
Lingue Supportate 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"
    ]
}