Gitlab Git Clone
Adds 'git clone' to the ssh/https clone url, so you simply can copy and paste it into your terminal.
Was ist Gitlab Git Clone?
Gitlab Git Clone ist eine Chrome-Erweiterung, die von pt1602schannel entwickelt wurde, und ihr Hauptmerkmal ist "Adds 'git clone' to the ssh/https clone url, so you simply can copy and paste it into your terminal.".
Erweiterungsscreenshots
Gitlab Git Clone-Erweiterungs-CRX-Datei herunterladen
Laden Sie Gitlab Git Clone-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
This is extension is NOT officially from the gitlab team.
Contribute: https://github.com/pt1602/gitlab-git-clone Grundlegende Informationen zur Erweiterung
| Name | |
| ID | niofneadkfofccgnfmofgpbppfhbkgmg |
| Offizielle URL | https://chromewebstore.google.com/detail/gitlab-git-clone/niofneadkfofccgnfmofgpbppfhbkgmg |
| Beschreibung | Adds 'git clone' to the ssh/https clone url, so you simply can copy and paste it into your terminal. |
| Dateigröße | 44.55 KB |
| Installationsanzahl | 62 |
| Aktuelle Version | 1.6 |
| Letztes Update | 2024-02-15 |
| Veröffentlichungsdatum | 2022-06-09 |
| Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
| Entwickler | pt1602schannel |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/pt1602/gitlab-git-clone |
| Hilfeseite URL | https://github.com/pt1602/gitlab-git-clone/issues |
| Unterstützte Sprachen | 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"
]
} | |