CountDown Timer

CountDown Timer

Use to count the number of days,hours,sec remaining

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "CountDown Timer",
  "version": "2.0",
  "description": "Use to count the number of days,hours,sec remaining",
  "icons": {
    "16": "Icon.png",
    "32": "Icon-32.png"
  },
  "action": {
    "default_popup": "Counter.html",
    "default_icon": "Icon.png"
  },
  "permissions": [
    "storage",
    "notifications"
  ],
  "background": {
    "service_worker": "js/background.js"
  }
}