Apty Client V3

Apty Client V3

Efficient user engagement and onboarding through real-time navigation, guidance, tips, and data entry correction.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Apty Client V3",
  "description": "Efficient user engagement and onboarding through real-time navigation, guidance, tips, and data entry correction.",
  "version": "4.15.0",
  "icons": {
    "16": "assets/icon/icon16.png",
    "32": "assets/icon/icon32.png",
    "48": "assets/icon/icon48.png",
    "128": "assets/icon/icon128.png"
  },
  "host_permissions": [
    "https://*.apty.io/*",
    "http://localhost/*"
  ],
  "permissions": [
    "storage",
    "tabs"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "config.json",
        "window.var.js",
        "error-tracking.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "https://hitachigbs.service-now.com/*",
        "https://ppmdemo.apty.io/*",
        "https://apty-developer-edition.ap4.force.com/aptyTestingMaryKay/s/*",
        "https://letznav-dev-ed.lightning.force.com/*",
        "https://letznav-dev-ed.my.salesforce.com/*"
      ],
      "js": [
        "bundle.js",
        "services.js"
      ],
      "css": [
        "commonstyles.css"
      ],
      "run_at": "document_idle",
      "all_frames": true
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "Apty Client"
  }
}