Examine source code of SaasRooms ShadowSense

Inspect and view changes in SaasRooms ShadowSense 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": "SaasRooms ShadowSense",
  "description": "SaasRooms ShadowSense",
  "version": "3.0",
  "permissions": [
    "history",
    "storage",
    "alarms",
    "identity",
    "identity.email"
  ],
  "host_permissions": [
    "https://app.saasrooms.com/*"
  ],
  "action": {
    "default_popup": "popup/popup.html",
    "default_icon": {
      "16": "images/logo-mini-16.png",
      "48": "images/logo-mini-48.png",
      "128": "images/logo-mini.png"
    }
  },
  "icons": {
    "16": "images/logo-mini-16.png",
    "48": "images/logo-mini-48.png",
    "128": "images/logo-mini.png"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "config.js",
        "auth.js",
        "logger.js",
        "functions.js",
        "services.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}