Examine source code of Whatfix for Google

Inspect and view changes in Whatfix for Google 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
{
  "name": "Whatfix for Google",
  "version": "2023.6.28.406",
  "manifest_version": 3,
  "description": "Whatfix provides in-app interactive guides and walkthroughs to Ease User Onboarding, Reduce Training, and Improve Support.",
  "icons": {
    "16": "logo16.png",
    "19": "logo19.png",
    "32": "logo32.png",
    "38": "logo38.png",
    "48": "logo48.png",
    "128": "logo128.png"
  },
  "background": {
    "service_worker": "extension.background/extension.background.nocache.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.microsoft.com/*"
      ],
      "js": [
        "extension.foreground/extension.foreground.nocache.js"
      ],
      "all_frames": true
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://*.whatfix.com/*/extension/*"
    ]
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "whatfix.com/*",
        "config.json"
      ],
      "matches": [
        "*://*.microsoft.com/*"
      ]
    }
  ],
  "action": {
    "browser_action": {
      "default_icon": "logo19.png",
      "default_title": "Whatfix for Google"
    }
  },
  "permissions": [
    "webNavigation",
    "storage",
    "alarms"
  ],
  "host_permissions": [
    "https://*.quickolabs.com/*"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}