DYL Click 2 Dial

DYL Click 2 Dial

Call or text directly from a weblink when logged into DYL. Works seamlessly with your CRM.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "DYL Click 2 Dial",
  "manifest_version": 2,
  "version": "0.3",
  "description": "Call or text directly from a weblink when logged into DYL. Works seamlessly with your CRM.",
  "browser_action": {
    "default_icon": "alert.icon.png",
    "default_title": "Quick Call",
    "default_popup": "popup.html"
  },
  "permissions": [
    "activeTab",
    "cookies",
    "https://my.dyl.com/"
  ],
  "web_accessible_resources": [
    "alert.icon.png"
  ],
  "background": {
    "scripts": [
      "jquery.js",
      "popup.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "css": [
        "c2d.css"
      ],
      "js": [
        "jquery.js",
        "c2d.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ]
}