Gitlab Git Clone
Adds 'git clone' to the ssh/https clone url, so you simply can copy and paste it into your terminal.
什么是Gitlab Git Clone?
Gitlab Git Clone是由pt1602schannel开发的Chrome扩展程序,该扩展的主要功能是“Adds 'git clone' to the ssh/https clone url, so you simply can copy and paste it into your terminal.”。
扩展截图
下载Gitlab Git Clone扩展crx文件
下载Gitlab Git Clone扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This is extension is NOT officially from the gitlab team.
Contribute: https://github.com/pt1602/gitlab-git-clone 扩展基本信息
| 名称 | |
| ID | niofneadkfofccgnfmofgpbppfhbkgmg |
| 官方URL | https://chromewebstore.google.com/detail/gitlab-git-clone/niofneadkfofccgnfmofgpbppfhbkgmg |
| 简介 | Adds 'git clone' to the ssh/https clone url, so you simply can copy and paste it into your terminal. |
| 文件大小 | 44.55 KB |
| 安装次数 | 62 |
| 当前版本 | 1.6 |
| 更新时间 | 2024-02-15 |
| 上架时间 | 2022-06-09 |
| 评分 | 5.00/5 共2次评分 |
| 开发者 | pt1602schannel |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/pt1602/gitlab-git-clone |
| 帮助页面URL | https://github.com/pt1602/gitlab-git-clone/issues |
| 支持的语言 | 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"
]
} | |