Potato timer

Potato timer

This extension is for managing your working and break times

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Potato timer",
  "description": "This extension is for managing your working and break times",
  "version": "2.0",
  "browser_action": {
    "default_icon": "nopotato.png",
    "default_popup": "popup.html",
    "default_title": "No potato!"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "contentscript.js",
        "jquery-2.1.4.min.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "https://ajax.googleapis.com/"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}