Examine source code of FocusButton

Inspect and view changes in FocusButton source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 3,
  "name": "FocusButton",
  "version": "1.3.1",
  "description": "Track your focus time with a simple press and hold button",
  "permissions": [
    "storage",
    "notifications",
    "alarms",
    "tabs"
  ],
  "host_permissions": [],
  "content_scripts": [],
  "action": {
    "default_icon": {
      "16": "icons/icon-16.png",
      "32": "icons/icon-32.png",
      "48": "icons/icon-48.png",
      "128": "icons/icon-128.png"
    },
    "default_title": "FocusButton"
  },
  "icons": {
    "16": "icons/icon-16.png",
    "32": "icons/icon-32.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png"
  },
  "background": {
    "scripts": [
      "background-worker.js"
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "icons/*",
        "offscreen.html",
        "offscreen.js",
        "index.html",
        "timer-end.mp3"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "focusbutton@example.com",
      "strict_min_version": "109.0"
    }
  }
}