Net Lines Of Code

Net Lines Of Code

Calculates and displays the net lines of code changed on a BitBucket branch or pull request.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Net Lines Of Code",
  "short_name": "NetLOC",
  "manifest_version": 2,
  "version": "0.2.2",
  "description": "Calculates and displays the net lines of code changed on a BitBucket branch or pull request.",
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.bitbucket.org/*pull-requests/*",
        "https://*.bitbucket.org/*branch/*",
        "https://*.bitbucket.org/*commits/*"
      ],
      "js": [
        "jquery-2.1.3.min.js",
        "calculate-lines-of-code.js"
      ]
    }
  ]
}