Movescount helper

Movescount helper

Adds handy functions to movescount.com website

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "version": "1.1.0",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "content_scripts": [
    {
      "matches": [
        "*://www.movescount.com/*"
      ],
      "js": [
        "js/index.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "persistent": false,
    "page": "background.html"
  },
  "offline_enabled": false,
  "permissions": [
    "downloads"
  ],
  "icons": {
    "128": "i/128.png",
    "256": "i/256.png"
  },
  "browser_action": {
    "default_icon": "i/128.png"
  },
  "update_url": "http://clients2.google.com/service/update2/crx"
}