FoxTel Click To Call

This extension detects phone numbers and add phone icon with link to an external application.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "FoxTel Click To Call",
  "description": "This extension detects phone numbers and add phone icon with link to an external application.",
  "version": "1.0.2",
  "manifest_version": 2,
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "browser_action": {
    "browser_style": false,
    "default_icon": {
      "16": "img/icon16.png",
      "48": "img/icon48.png"
    },
    "default_title": "ClickToCall",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "options.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "clickToCall.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "options_ui": {
    "page": "options.html",
    "browser_style": true
  },
  "permissions": [
    "storage"
  ],
  "web_accessible_resources": [
    "img/*.png"
  ]
}