Examine source code of DailyPause

Inspect and view changes in DailyPause 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",
  "name": "DailyPause",
  "description": "A simple mindfulness extension for Chrome",
  "version": "1.0",
  "manifest_version": 3,
  "options_page": "options.html",
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/images/Pause16x.png",
      "32": "/images/Pause32x.png",
      "48": "/images/Pause64x.png",
      "128": "/images/Pause128x.png"
    }
  },
  "icons": {
    "16": "/images/Pause16x.png",
    "32": "/images/Pause32x.png",
    "48": "/images/Pause64x.png",
    "128": "/images/Pause128x.png"
  }
}