Examine source code of Blur Watch

Inspect and view changes in Blur Watch 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": "Blur Watch",
  "version": "1.0.2",
  "manifest_version": 3,
  "description": "Blur Watch",
  "icons": {
    "16": "images/get_started16.png",
    "32": "images/get_started32.png",
    "48": "images/get_started48.png",
    "128": "images/get_started128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://blur.io/*",
        "https://blur.watch/*"
      ],
      "js": [
        "js/common.js"
      ]
    },
    {
      "matches": [
        "https://blur.io/*"
      ],
      "js": [
        "js/watch.js"
      ]
    },
    {
      "matches": [
        "https://blur.watch/*"
      ],
      "js": [
        "js/money.js"
      ]
    }
  ],
  "host_permissions": [
    "https://blur.io/*",
    "https://blur.watch/*"
  ]
}