Freshdesk Contact Center - Click to Call

Freshdesk Contact Center - Click to Call

Click to call your prospects or phone numbers on a webpage with this extension.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Freshdesk Contact Center - Click to Call",
  "short_name": "Freshdesk Contact Center",
  "description": "Click to call your prospects or phone numbers on a webpage with this extension.",
  "version": "1.51",
  "permissions": [
    "storage",
    "contextMenus",
    "commands",
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "jquery.min.js",
        "content.js"
      ],
      "css": [],
      "all_frames": true
    }
  ],
  "browser_action": {
    "default_icon": "images/c2c-locked.png",
    "default_popup": "freshfone.html"
  },
  "options_ui": {
    "page": "html/options.html",
    "open_in_tab": true
  },
  "icons": {
    "16": "images/logo.png",
    "32": "images/logo.png"
  },
  "background": {
    "scripts": [
      "jquery.min.js",
      "background.js"
    ],
    "persistent": true
  },
  "web_accessible_resources": [
    "images/logo.png",
    "style.css",
    "login.html",
    "jquery.min.js",
    "js/widget-changes.js",
    "images/spinner.gif",
    "css/widget.css"
  ],
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+9",
        "mac": "Command+Shift+9"
      },
      "description": "_execute_browser_action"
    }
  }
}