CSTimer Makeover

CSTimer Makeover

* Provides a nicer UI for cstimer.net * Enforces that you always use the SSL version of cstimer * Makes some opinionated decisions…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "CSTimer Makeover",
  "version": "0.1.8",
  "content_scripts": [
    {
      "matches": [
        "https://*.cstimer.net/*",
        "http://*.cstimer.net/*"
      ],
      "js": [
        "script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "styles.css",
    "img/favicon.png"
  ],
  "icons": {
    "16": "img/cube16.png",
    "48": "img/cube48.png",
    "128": "img/cube.png"
  }
}