Web Journey Manager - Beta

Web Journey Manager - Beta

Web Journey Manager - Beta

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Web Journey Manager - Beta",
  "manifest_version": 2,
  "name": "Web Journey Manager - Beta",
  "version": "1.21.2",
  "homepage_url": "https://www.observepoint.com/",
  "icons": {
    "48": "assets/icons/icons-48.png",
    "128": "assets/icons/icons-128.png"
  },
  "permissions": [
    "tabs",
    "webNavigation",
    "cookies",
    "<all_urls>"
  ],
  "content_security_policy": "script-src 'self' https://cdnjs.cloudflare.com 'unsafe-eval'; img-src 'self' * data: ; object-src 'self'",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "vendor/atoms.js",
        "vendor/utils.js",
        "vendor/selenium-browserbot.js",
        "vendor/escape.js",
        "vendor/selenium-api.js",
        "vendor/sizzle.js",
        "content.js"
      ],
      "match_about_blank": true,
      "all_frames": true
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "vendor/browser-polyfill.js",
        "runScriptInjector.js"
      ],
      "match_about_blank": true,
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_icon": "assets/icons/icons-48.png",
    "default_title": "Web Journey Manager - Beta",
    "default_popup": "index.html"
  },
  "web_accessible_resources": [
    "page/runScript.js"
  ]
}