Clocking It Timer Window

Clocking It Timer Window

Easy timer window access. Notifies often if there's tasks with active timer. Timer is paused if no action is taken.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": [
    {
      "name": "Jonatas Urias B Teixeira",
      "email": "[email protected]"
    }
  ],
  "manifest_version": 2,
  "name": "Clocking It Timer Window",
  "description": "Easy timer window access. Notifies often if there's tasks with active timer. Timer is paused if no action is taken.",
  "version": "1.2",
  "permissions": [
    "notifications",
    "http://*.clockingit.com/*/*"
  ],
  "browser_action": {
    "default_icon": {
      "19": "ico/19.png",
      "32": "ico/32.png"
    },
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "ico/16.png",
    "24": "ico/24.png",
    "32": "ico/32.png",
    "64": "ico/64.png",
    "128": "ico/128.png"
  },
  "background": {
    "scripts": [
      "js/jquery-1.9.0.min.js",
      "js/func.js",
      "js/init.js"
    ]
  },
  "options_page": "options.html",
  "web_accessible_resources": [
    "ico/16.png",
    "ico/128.png",
    "ico/wr.png",
    "sound/click.mp3"
  ]
}