Examine source code of Securly Plus

Inspect and view changes in Securly Plus 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,
  "name": "Securly Plus",
  "description": "Dark mode and improvements for Securly Flex",
  "version": "3.2",
  "host_permissions": [
    "*://flex.securly.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://flex.securly.com/*"
      ],
      "js": [
        "isolated-content-script.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "*://flex.securly.com/*"
      ],
      "css": [
        "dark-mode.css"
      ],
      "js": [
        "content-script.js"
      ],
      "run_at": "document_start",
      "world": "MAIN"
    }
  ],
  "options_ui": {
    "page": "options/options.html",
    "open_in_tab": true
  },
  "action": {
    "default_title": "Options"
  },
  "permissions": [
    "storage",
    "scripting"
  ],
  "icons": {
    "16": "icons/icon-16.png",
    "32": "icons/icon-32.png",
    "48": "icons/icon-48.png",
    "64": "icons/icon-64.png",
    "128": "icons/icon-128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "idb.js"
      ],
      "matches": [
        "https://flex.securly.com/*"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "minimum_chrome_version": "119"
}