Github Blame Tool

Github Blame Tool

Brings better blame traversal links to github's blame and commit pages.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "1.1.0",
  "content_scripts": [
    {
      "matches": [
        "https://github.com/*/blame/*"
      ],
      "js": [
        "jquery-1.11.3.min.js",
        "blame-tool.js",
        "github.js"
      ],
      "css": [
        "blame-tool.css"
      ]
    },
    {
      "matches": [
        "https://github.com/*/commit/*"
      ],
      "js": [
        "jquery-1.11.3.min.js",
        "commit-blame-tool.js",
        "github-commit.js"
      ]
    }
  ],
  "name": "Github Blame Tool",
  "description": "Brings better blame traversal links to github's blame and commit pages.",
  "icons": {
    "16": "icon16.ico",
    "32": "icon32.ico",
    "64": "icon64.ico"
  }
}