Examine source code of Take a Break

Inspect and view changes in Take a Break 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Take a Break",
  "version": "1.2.1",
  "action": {
    "default_icon": "assets/images/logo.png",
    "default_popup": "dist/popup.html",
    "default_title": "Take a Break"
  },
  "icons": {
    "16": "assets/images/icon16.png",
    "32": "assets/images/icon32.png",
    "48": "assets/images/icon48.png",
    "128": "assets/images/icon128.png"
  },
  "permissions": [
    "storage",
    "alarms",
    "notifications",
    "background",
    "scripting"
  ],
  "host_permissions": [
    "https://*/*",
    "http://*/*"
  ],
  "description": "Take a Break is a Chrome extension that monitors and reminds you to take breaks periodically.",
  "background": {
    "service_worker": "dist/background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "assets/audio/breakover.mp3"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ]
}