Refactoring Aware Commit Review

Refactoring Aware Commit Review

Refactoring-Aware-Commit-Review is a useful tool that visualizes refactoring information directly on GitHub.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Refactoring Aware Commit Review",
  "version": "2.0.4",
  "description": "Refactoring-Aware-Commit-Review is a useful tool that visualizes refactoring information directly on GitHub.",
  "permissions": [
    "storage",
    "https://github.com/*"
  ],
  "options_page": "options.html",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://github.com/*/*/commit/*",
        "https://github.com/*/*/pull/*/commits/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "script.js",
    "style.js",
    "pin.png",
    "unpin.png"
  ],
  "browser_action": {
    "default_icon": "refactoring.png"
  },
  "manifest_version": 2
}