Code Coverage Calculator

Code Coverage Calculator

Shows the code coverage of opened tab interactively without going to developer console

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Code Coverage Calculator",
  "version": "0.8.9",
  "description": "Shows the code coverage of opened tab interactively without going to developer console",
  "manifest_version": 2,
  "icons": {
    "16": "img/icons/16.png",
    "48": "img/icons/48.png",
    "128": "img/icons/128.png"
  },
  "permissions": [
    "storage"
  ],
  "author": "Sumit Bhatt",
  "browser_action": {
    "default_icon": "img/codecoveragecalculator.png",
    "default_popup": "view/popup.html"
  },
  "update_url": "http://clients2.google.com/service/update2/crx?response=updatecheck&x=id%3Dncdifkcipeniikkbckejmnbbcofdheig%26uc",
  "content_scripts": [
    {
      "js": [
        "js/jquery.js",
        "js/forcetk.js",
        "js/tinycon.js",
        "js/contentscript.js"
      ],
      "matches": [
        "https://*.salesforce.com/*",
        "https://*.force.com/*"
      ]
    }
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  }
}