Examine source code of Secure WebShield

Inspect and view changes in Secure WebShield 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",
  "author": "Secure Browsing Technologies LLC",
  "description": "Easily identify safe-to-browse websites with Secure WebShield",
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "name": "Secure WebShield",
  "version": "1.0",
  "manifest_version": 3,
  "icons": {
    "16": "assets/logo16.png",
    "32": "assets/logo32.png",
    "48": "assets/logo48.png",
    "128": "assets/logo128.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_title": "Secure WebShield (Protects you)"
  },
  "permissions": [
    "storage",
    "alarms",
    "unlimitedStorage",
    "webRequest",
    "management"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "optional_host_permissions": []
}