Examine source code of Whatfix for Wikipedia

Inspect and view changes in Whatfix for Wikipedia 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 Wikipedia",
  "version": "2022.11.8.1061",
  "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": [
        "*://*.wikipedia.org/*"
      ],
      "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": [
        "*://*.wikipedia.org/*"
      ]
    }
  ],
  "action": {
    "browser_action": {
      "default_icon": "logo19.png",
      "default_title": "Whatfix for Wikipedia"
    }
  },
  "permissions": [
    "webNavigation",
    "storage",
    "alarms"
  ],
  "host_permissions": [
    "https://*.quickolabs.com/*"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}