Interval Timer

Interval Timer

The custom timer that allows you to set specific intervals.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Interval Timer",
  "version": "1.0.0",
  "version_name": "1.0.",
  "description": "The custom timer that allows you to set specific intervals.",
  "permissions": [
    "declarativeContent"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_security_policy": "script-src 'self' https://kit.fontawesome.com/; object-src 'self'",
  "browser_action": {
    "default_icon": {
      "32": "assets/timerIcon-32.png",
      "48": "assets/timerIcon-48.png",
      "128": "assets/timerIcon-128.png",
      "534": "assets/timerIcon-534.png"
    }
  },
  "icons": {
    "32": "assets/timerIcon-32.png",
    "48": "assets/timerIcon-48.png",
    "128": "assets/timerIcon-128.png",
    "534": "assets/timerIcon-534.png"
  },
  "manifest_version": 2
}