cronTab

cronTab

Open the specified URL periodically.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "cronTab",
  "version": "1.0.1",
  "description": "Open the specified URL periodically.",
  "icons": {
    "48": "icons/cronTab-48.png",
    "96": "icons/cronTab-96.png",
    "192": "icons/cronTab-192.png"
  },
  "permissions": [
    "storage",
    "alarms"
  ],
  "action": {
    "default_icon": {
      "16": "icons/cronTab-16.png",
      "32": "icons/cronTab-32.png"
    },
    "default_title": "cronTab",
    "default_popup": "options.html"
  },
  "options_ui": {
    "page": "options.html"
  },
  "background": {
    "service_worker": "background.js"
  }
}