Star2Star Click to Dial

Star2Star Click to Dial

This extension detects phone numbers on web pages and enables them as links so when clicked will place the call via Star2Star.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Star2Star Click to Dial",
  "short_name": "*2* Click-to-Dial",
  "version": "2.0.7",
  "description": "This extension detects phone numbers on web pages and enables them as links so when clicked will place the call via Star2Star.",
  "icons": {
    "16": "media/icon16.png",
    "48": "media/icon48.png",
    "128": "media/icon128.png"
  },
  "permissions": [
    "management",
    "storage",
    "identity",
    "cookies",
    "https://auth-appdev.star2starglobal.net/*",
    "https://cpaas-appdev.star2starglobal.net/*",
    "https://auth.star2star.com/*",
    "https://cpaas-api.star2star.com/*",
    "https://*.chromiumapp.org/"
  ],
  "web_accessible_resources": [
    "media/icon16.png"
  ],
  "background": {
    "persistent": true,
    "page": "background.html"
  },
  "browser_action": {
    "default_icon": "media/icon16.png",
    "default_popup": "views/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "js/content.js"
      ]
    }
  ]
}