Bitcally

Bitcally

It enables click-to-dial to the phone numbers detected in the web pages and originates calls.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Bitcally",
  "short_name": "Click2Call FAST and SIMPLE",
  "version": "0.5",
  "description": "It enables click-to-dial to the phone numbers detected in the web pages and originates calls.",
  "icons": {
    "16": "resources/xcallyLogoBlack.png",
    "48": "resources/xcallyLogoBlack.png",
    "128": "resources/xcallyLogoBlack.png"
  },
  "minimum_chrome_version": "10",
  "background": {
    "scripts": [
      "xcally_context_dial.js",
      "bootstrapper.js",
      "background.js",
      "jquery-1.11.2.min.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "common.js",
        "jquery-1.11.2.min.js",
        "plugin-proxy.js",
        "chrome.js"
      ],
      "all_frames": false,
      "css": [
        "css/iframe.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "resources/xcallylogo.png",
    "resources/xcallyLogoBlack.png",
    "resources/logo-big.png",
    "css/**.*",
    "**.html",
    "**.js"
  ],
  "permissions": [
    "storage",
    "tabs",
    "*://*/*",
    "contextMenus",
    "activeTab"
  ],
  "options_ui": {
    "page": "options.html",
    "chrome_style": true,
    "open_in_tab": true
  },
  "browser_action": {
    "default_icon": "resources/xcallyLogoBlack_off.png",
    "default_title": "Xcally Dial"
  },
  "default_locale": "it"
}