Ashish

Ashish

Demo ENT

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Ashish",
  "version": "2023.9.23.735",
  "manifest_version": 3,
  "description": "Demo ENT",
  "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": [
        "*://*.facebook.com/*",
        "*://*.google.com/*",
        "*://*.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": [
        "*://*.facebook.com/*",
        "*://*.google.com/*",
        "*://*.microsoft.com/*"
      ]
    }
  ],
  "action": {
    "browser_action": {
      "default_icon": "logo19.png",
      "default_title": "Ashish"
    }
  },
  "permissions": [
    "webNavigation",
    "storage",
    "alarms"
  ],
  "host_permissions": [
    "https://*.whatfix.com/*"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}