Focus Timer

Focus Timer

A time management method based on 25-minute stretches of focused work broken by 5-minute breaks

Merlin
Additional files are visible only to premium users

manifest.json


{
  "description": "__MSG_description__",
  "version": "0.0.7",
  "manifest_version": 3,
  "name": "__MSG_name__",
  "update_URL": "https://edge.microsoft.com/extensionwebstorebase/v1/crx",
  "options_page": "options.html",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "default_locale": "en",
  "offline_enabled": true,
  "action": {
    "default_title": "Readlax Focus Timer",
    "default_popup": "popup.html",
    "default_icon": "assets/img/icon32.png"
  },
  "permissions": [
    "storage",
    "alarms",
    "notifications"
  ],
  "icons": {
    "16": "assets/img/icon16.png",
    "48": "assets/img/icon48.png",
    "64": "assets/img/icon64.png",
    "128": "assets/img/icon128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*.*"
      ],
      "matches": []
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}