LGTM = Looks Good to Me

LGTM = Looks Good to Me

LGTM prints review statuses as stamp labels on the GitHub pull request overview page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "LGTM = Looks Good to Me",
  "description": "LGTM prints review statuses as stamp labels on the GitHub pull request overview page.",
  "icons": {
    "128": "lgtm-app-icon.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://github.com/*"
      ],
      "js": [
        "contentscript.js"
      ],
      "css": [
        "contentscript.css"
      ]
    }
  ],
  "version": "0.1.1",
  "manifest_version": 2
}