PCS Screenpop for Bullhorn

PCS Screenpop for Bullhorn

Screenpops Bullhorn when a phone call is received.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "PCS Screenpop for Bullhorn",
  "description": "Screenpops Bullhorn when a phone call is received.",
  "version": "1.5",
  "icons": {
    "16": "img/icon-16.png",
    "32": "img/icon-32.png",
    "48": "img/icon-48.png",
    "96": "img/icon-96.png"
  },
  "permissions": [
    "https://app.bullhornstaffing.com/*",
    "storage"
  ],
  "background": {
    "page": "background/background.html",
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "https://app.bullhornstaffing.com/"
      ],
      "js": [
        "content/content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "browser_action": {
    "default_icon": {
      "16": "img/button-inactive-16.png",
      "32": "img/button-inactive-32.png",
      "48": "img/button-inactive-48.png",
      "96": "img/button-inactive-96.png"
    },
    "default_title": "PCS Screenpop for Bullhorn",
    "default_popup": "config/configuration.html#phone",
    "browser_style": true,
    "chrome_style": true
  },
  "web_accessible_resources": [
    "content/main.js",
    "content/node.js",
    "util.js",
    "screenpop.js"
  ]
}