Examine source code of Posture Checker

Inspect and view changes in Posture Checker 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": "Posture Checker",
  "version": "1.0.0",
  "description": "A posture reminder",
  "icons": {
    "16": "content/16x16_trans.png",
    "48": "content/48x48_trans.png",
    "128": "content/128x128_trans.png"
  },
  "action": {
    "default_icon": "content/16x16_trans.png",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage",
    "notifications",
    "alarms",
    "scripting"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}