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 - это расширение Chrome, разработанное pt1602schannel, и его основная функция - "Adds 'git clone' to the ssh/https clone url, so you simply can copy and paste it into your terminal.".
Снимки экрана расширения
Скачать файл CRX расширения Gitlab Git Clone
Скачайте файлы расширений 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"
]
} | |