Pingterval!

Pingterval!

Track time with a ping every hour

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "3.2",
  "name": "__MSG_extName__",
  "description": "__MSG_extDesc__",
  "short_name": "Pingterval",
  "default_locale": "en",
  "minimum_chrome_version": "109",
  "offline_enabled": true,
  "incognito": "not_allowed",
  "action": {
    "default_title": "__MSG_extName__",
    "default_popup": "pages/popup/popup.html",
    "default_icon": {
      "16": "icons/icon16.png",
      "32": "icons/icon32.png"
    }
  },
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "permissions": [
    "contextMenus",
    "alarms",
    "idle",
    "storage",
    "offscreen"
  ],
  "background": {
    "service_worker": "sw.js",
    "type": "module"
  }
}