verint.dpa.chrome.trigger

verint.dpa.chrome.trigger

Chrome Web Socket Extension for DPA

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "verint.dpa.chrome.trigger",
  "description": "Chrome Web Socket Extension for DPA",
  "version": "15.2.9.129",
  "permissions": [
    "tabs",
    "webNavigation"
  ],
  "background": {
    "scripts": [
      "Verint.DPA.Background.js"
    ]
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>",
        "file://*/*"
      ],
      "exclude_globs": [
        "devtools://*"
      ],
      "match_about_blank": true,
      "js": [
        "./data/js/Verint.DPA.Content.js"
      ],
      "all_frames": true
    }
  ]
}