Github Clone to Sourcetree Button
Add button to any github repo to clone it into SourceTree
Apa itu Github Clone to Sourcetree Button?
Github Clone to Sourcetree Button adalah ekstensi Chrome yang dikembangkan oleh gareth.blain, dan fitur utamanya adalah "Add button to any github repo to clone it into SourceTree".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Github Clone to Sourcetree Button
Unduh file ekstensi Github Clone to Sourcetree Button dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Github Clone to Sourcetree Button |
ID | eopgibgcmlglaofajpkhoomnbdedijmb |
URL Resmi | https://chromewebstore.google.com/detail/github-clone-to-sourcetre/eopgibgcmlglaofajpkhoomnbdedijmb |
Deskripsi | Add button to any github repo to clone it into SourceTree |
Ukuran File | 124 KB |
Jumlah Instalasi | 66 |
Versi Saat Ini | 1.0.1 |
Terakhir Diperbarui | 2020-10-01 |
Tanggal Publikasi | 2020-03-29 |
Penilaian | 4.00/5 Total 2 Penilaian |
Pengembang | gareth.blain |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/GarethBlain/Github-Clone-to-Sourcetree-Button |
URL Halaman Bantuan | https://github.com/GarethBlain/Github-Clone-to-Sourcetree-Button/issues |
Bahasa yang Didukung | 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" ] } |