Github Clone to Sourcetree Button
Add button to any github repo to clone it into SourceTree
Что такое Github Clone to Sourcetree Button?
Github Clone to Sourcetree Button - это расширение Chrome, разработанное gareth.blain, и его основная функция - "Add button to any github repo to clone it into SourceTree".
Снимки экрана расширения
Скачать файл CRX расширения Github Clone to Sourcetree Button
Скачайте файлы расширений Github Clone to Sourcetree Button в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This is a simple chrome plug-in that adds a button into the GitHub "Code" dropdown that opens SourceTree's clone window with all the details populated to clone the GitHub project you're currently on.
Основная информация о расширении
Название | Github Clone to Sourcetree Button |
ID | eopgibgcmlglaofajpkhoomnbdedijmb |
Официальный URL | https://chromewebstore.google.com/detail/github-clone-to-sourcetre/eopgibgcmlglaofajpkhoomnbdedijmb |
Описание | Add button to any github repo to clone it into SourceTree |
Размер файла | 124 KB |
Количество установок | 66 |
Текущая Версия | 1.0.1 |
Последнее Обновление | 2020-10-01 |
Дата публикации | 2020-03-29 |
Рейтинг | 4.00/5 Всего 2 оценок |
Разработчик | gareth.blain |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/GarethBlain/Github-Clone-to-Sourcetree-Button |
URL страницы помощи | https://github.com/GarethBlain/Github-Clone-to-Sourcetree-Button/issues |
Поддерживаемые языки | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "content_scripts": [ { "js": [ "script.js" ], "css": [ "styles.css" ], "matches": [ "https:\/\/github.com\/*" ] } ], "background": { "scripts": [ "background.js" ] }, "description": "Add button to any github repo to clone it into SourceTree", "icons": { "128": "icon\/icon128.png", "16": "icon\/icon16.png", "48": "icon\/icon48.png" }, "manifest_version": 2, "name": "Github Clone to Sourcetree Button", "homepage_url": "https:\/\/github.com\/GarethBlain\/Github-Clone-to-Sourcetree-Button", "version": "1.0.1", "permissions": [ "tabs" ] } |