Github Clone to Sourcetree Button

Github Clone to Sourcetree Button

Add button to any github repo to clone it into SourceTree

Merlin
Additional files are visible only to premium users

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": {
    "16": "icon/icon16.png",
    "48": "icon/icon48.png",
    "128": "icon/icon128.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"
  ]
}