Fair Start

Fair Start

Fair start - trigger actions at specified time like a stopwatch.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Fair Start",
  "short_name": "FS",
  "description": "Fair start - trigger actions at specified time like a stopwatch.",
  "version": "0.1",
  "permissions": [
    "tabs",
    "notifications",
    "*://*/*"
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "js/jquery-2.0.3.min.js",
        "js/fs-contentscript.js"
      ]
    }
  ],
  "icons": {
    "16": "img/stopwatch-icon-16.png",
    "48": "img/stopwatch-icon-48.png"
  },
  "web_accessible_resources": [
    "js/jquery-2.0.3.min.map",
    "js/jquery-2.0.3.js",
    "html/main.html"
  ],
  "browser_action": {
    "default_icon": "img/stopwatch-icon-48.png",
    "default_title": "FS"
  },
  "manifest_version": 2
}