Dead Code Society

Dead Code Society

Display count of lines changed when viewing a phabricator diff

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Dead Code Society",
  "version": "1.1",
  "description": "Display count of lines changed when viewing a phabricator diff",
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "deadCodeSociety.js"
      ],
      "run_at": "document_end"
    }
  ],
  "browser_action": {
    "default_icon": "hocho-48.png"
  },
  "icons": {
    "16": "hocho-16.png",
    "48": "hocho-48.png",
    "128": "hocho-128.png"
  }
}