Gitlab Git Clone

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

Vad är Gitlab Git Clone?

Gitlab Git Clone är en Chrome-tillägg utvecklad av pt1602schannel, och dess huvudfunktion är "Adds 'git clone' to the ssh/https clone url, so you simply can copy and paste it into your terminal.".

Tilläggsskärmbilder

screenshot

Ladda ner Gitlab Git Clone-förlängningens CRX-fil

Ladda ner Gitlab Git Clone-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        This is extension is NOT officially from the gitlab team. 

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

Grundläggande Information om Tillägg

Namn Gitlab Git Clone Gitlab Git Clone
ID niofneadkfofccgnfmofgpbppfhbkgmg
Officiell webbadress https://chromewebstore.google.com/detail/gitlab-git-clone/niofneadkfofccgnfmofgpbppfhbkgmg
Beskrivning Adds 'git clone' to the ssh/https clone url, so you simply can copy and paste it into your terminal.
Filstorlek 44.55 KB
Antal Installationer 62
Aktuell Version 1.6
Senast Uppdaterad 2024-02-15
Publiceringsdatum 2022-06-09
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare pt1602schannel
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/pt1602/gitlab-git-clone
Hjälpsida URL https://github.com/pt1602/gitlab-git-clone/issues
Stödda Språk 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"
    ]
}