Examine source code of NovaSweep

Inspect and view changes in NovaSweep 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
{
  "manifest_version": 3,
  "minimum_chrome_version": "96.0",
  "name": "__MSG_extName__",
  "description": "__MSG_extShortDesc__",
  "version": "1.0.1",
  "action": {
    "default_popup": "html/popup.html",
    "default_icon": {
      "16": "icons/icon16.png",
      "48": "icons/icon48.png",
      "128": "icons/icon128.png",
      "300": "icons/icon300.png"
    },
    "default_title": "__MSG_extName__"
  },
  "default_locale": "en",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png",
    "300": "icons/icon300.png"
  },
  "background": {
    "service_worker": "js/background.js",
    "type": "module"
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "permissions": [
    "declarativeNetRequest",
    "storage",
    "scripting",
    "alarms",
    "cookies",
    "browsingData"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}