Oracle Eloqua Sales Tools

Oracle Eloqua Sales Tools

Allows sales representatives to view contacts' profile information from Eloqua in an easy to access pop-up in your browser.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "version": "2.1.0",
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "default_locale": "en",
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "/scripts/content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "images/icon16.png",
    "32": "images/icon32.png",
    "64": "images/icon64.png",
    "128": "images/icon128.png",
    "256": "images/icon256.png"
  },
  "browser_action": {
    "default_popup": "/popup.html"
  },
  "permissions": [
    "tabs",
    "cookies",
    "https://*.secure.eloqua.com/",
    "https://apps.p01.eloqua.com/",
    "https://apps.p02.eloqua.com/",
    "https://apps.p03.eloqua.com/",
    "https://apps.p04.eloqua.com/",
    "https://apps.p06.eloqua.com/",
    "https://apps.p07.eloqua.com/",
    "https://*.eloqua.com/"
  ],
  "web_accessible_resources": [
    "images/*",
    "styles/*",
    "scripts/*"
  ],
  "offline_enabled": false
}