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": "2022.10.28.903",
  "manifest_version": 3,
  "description": "Demo Extension to Test",
  "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": [
        "*://*.google.com/*",
        "*://*.localhost/*"
      ],
      "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": [
        "*://*.google.com/*",
        "*://*.localhost/*"
      ]
    }
  ],
  "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"
}