Examine source code of Look Busy

Inspect and view changes in Look Busy 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": "Look Busy",
  "version": "1.0.3",
  "manifest_version": 3,
  "description": "Fool people into thinking you're hard at work with this user-friendly extension!",
  "author": "Liberated Programmer",
  "icons": {
    "16": "images/look_busy_16_16.png",
    "48": "images/look_busy_48_48.png",
    "128": "images/look_busy_128_128.png"
  },
  "action": {
    "default_title": "Look Busy",
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "scripts/redirect.js"
      ]
    }
  ]
}