Stand Up Reminder

Stand Up Reminder

A reminder to stand up and stretch your legs for one minute 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,
  "name": "Stand Up Reminder",
  "version": "2.1",
  "description": "A reminder to stand up and stretch your legs for one minute every hour.",
  "short_name": "Stand Up",
  "permissions": [
    "alarms",
    "storage",
    "idle"
  ],
  "background": {
    "service_worker": "service_worker.js"
  },
  "action": {
    "default_icon": {
      "16": "icons/icon48.png",
      "48": "icons/icon48.png",
      "128": "icons/icon128.png"
    },
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icons/icon48.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  }
}