Gitlab Git Clone
Adds 'git clone' to the ssh/https clone url, so you simply can copy and paste it into your terminal.
What is Gitlab Git Clone?
Gitlab Git Clone is a Chrome extension developed by pt1602schannel, and its main feature is "Adds 'git clone' to the ssh/https clone url, so you simply can copy and paste it into your terminal.".
Extension Screenshots
Download Gitlab Git Clone Extension CRX File
Download Gitlab Git Clone extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This is extension is NOT officially from the gitlab team. Contribute: https://github.com/pt1602/gitlab-git-clone
Extension Basic Information
Name | Gitlab Git Clone |
ID | niofneadkfofccgnfmofgpbppfhbkgmg |
Official URL | https://chromewebstore.google.com/detail/gitlab-git-clone/niofneadkfofccgnfmofgpbppfhbkgmg |
Description | Adds 'git clone' to the ssh/https clone url, so you simply can copy and paste it into your terminal. |
File Size | 44.55 KB |
Installation Count | 62 |
Current Version | 1.6 |
Last Updated | 2024-02-15 |
Publish Date | 2022-06-09 |
Rating | 5.00/5 Total 2 Ratings |
Developer | pt1602schannel |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/pt1602/gitlab-git-clone |
Help Page URL | https://github.com/pt1602/gitlab-git-clone/issues |
Supported Languages | 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" ] } |