go get for Github

go get for Github

Add a "go get" button to GitHub.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "go get for Github",
  "short_name": "go get",
  "version": "1.0.5",
  "manifest_version": 2,
  "description": "Add a \"go get\" button to GitHub.",
  "homepage_url": "https://github.com/dlsniper/ggg",
  "default_locale": "en",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "options_ui": {
    "page": "src/ggg/options.html",
    "chrome_style": true
  },
  "permissions": [
    "clipboardWrite",
    "storage",
    "*://*.github.com/*"
  ],
  "web_accessible_resources": [
    "src/jquery/jquery-2.2.4.min.js",
    "src/css/ggg.css",
    "icons/icon20.png"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.github.com/*"
      ],
      "js": [
        "src/jquery/jquery-2.2.4.min.js",
        "src/ggg/ggg.js"
      ]
    }
  ]
}