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".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου 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 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"
    ]
}