CallBridgePro - Call+SMS from the PC

CallBridgePro - Call+SMS from the PC

Launch calls/SMS on IOS/Android smartphone from your browser

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "manifest_version": 2,
  "version": "2.70",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "author": "McLeed",
  "short_name": "CallBridgePro Mobile",
  "icons": {
    "16": "images/icon-16.png",
    "32": "images/icon-32.png",
    "48": "images/icon-48.png",
    "64": "images/icon-64.png",
    "128": "images/icon-128.png"
  },
  "options_page": "gestion.html",
  "background": {
    "page": "background.html",
    "persistent": true
  },
  "commands": {
    "Call": {
      "suggested_key": {
        "default": "Alt+Y",
        "linux": "Alt+Y"
      },
      "description": "Call"
    },
    "Sms": {
      "suggested_key": {
        "default": "Alt+X",
        "linux": "Alt+X"
      },
      "description": "Sms"
    },
    "SmsStd": {
      "suggested_key": {
        "default": "Alt+Z",
        "linux": "Alt+Z"
      },
      "description": "SmsStd"
    },
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+B",
        "linux": "Alt+B"
      }
    }
  },
  "browser_action": {
    "default_icon": "images/icon-19.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage",
    "notifications",
    "background",
    "contextMenus"
  ],
  "web_accessible_resources": [
    "*.*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "jquery.min.js",
        "select.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ]
}