LOC

LOC

This extension counts the lines of code (LOC) in the current GitHub repo on screen and displays that at the top of the page. This…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "LOC",
  "version": "0.2",
  "content_scripts": [
    {
      "matches": [
        "https://github.com/*",
        "http://github.com/*/*"
      ],
      "js": [
        "jquery-core.js",
        "content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  }
}