Examine source code of Sweeper

Inspect and view changes in Sweeper 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,
  "version": "1.0.1",
  "name": "Sweeper",
  "description": "Block websites to stay focused",
  "author": "Lanars",
  "icons": {
    "16": "favicon_16.png",
    "32": "favicon_32.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "action": {
    "default_title": "Block websites",
    "default_popup": "popup.html",
    "default_icon": {
      "16": "favicon_16.png",
      "32": "favicon_32.png"
    }
  },
  "options_page": "options.html",
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "contentScript.js",
        "contentScriptHelpers.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "storage",
    "tabs",
    "notifications",
    "alarms"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*.svg",
        "*.png"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ]
}