LGTM for Github

LGTM for Github

This extenion automatically adds configurable LGTM comment to github commits with a configurable keyboard shortcut.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "LGTM for Github",
  "description": "This extenion automatically adds configurable LGTM comment to github commits with a configurable keyboard shortcut.",
  "version": "1.1",
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://github.com/*"
      ],
      "js": [
        "content/content.js"
      ]
    }
  ],
  "options_page": "options/options.html",
  "permissions": [
    "https://github.com/",
    "storage"
  ]
}