Pearl360 Extension

Pearl360 Extension

Easily access and view your leads in Pearl 360.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "short_name": "Pearl360 Extension",
  "name": "Pearl360 Extension",
  "description": "Easily access and view your leads in Pearl 360.",
  "manifest_version": 2,
  "version": "1.0.7",
  "homepage_url": "https://vxp.showroomxpress.com",
  "icons": {
    "16": "images/360_gray_16x16.png",
    "32": "images/360_gray_32x32.png",
    "48": "images/360_gray_48x48.png",
    "128": "images/360_gray_128x128.png"
  },
  "browser_action": {
    "default_title": "Pearl360 Extension"
  },
  "background": {
    "persistent": true,
    "scripts": [
      "app/js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "app/js/underscore.gz.js",
        "app/js/content.js"
      ],
      "css": [
        "app/css/styles.css"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "app/content.js"
  ],
  "permissions": [
    "*://*/*",
    "activeTab",
    "webNavigation",
    "tabs",
    "webRequest",
    "webRequestBlocking"
  ]
}