Dialr

Dialr

Converts phone numbers to clickable links that launch your favorite calling services

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Dialr",
  "description": "Converts phone numbers to clickable links that launch your favorite calling services",
  "version": "1.0",
  "options_page": "dialr_options.html",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "css/dialr.css"
      ],
      "js": [
        "js/jQuery.js",
        "js/dialr.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": {
      "19": "images/icons/logo_19.png",
      "38": "images/icons/logo_38.png"
    },
    "default_title": "Dialr",
    "default_popup": "dialr_popup.html"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "permissions": [
    "tabs",
    "storage",
    "http://*/*",
    "https://*/*"
  ],
  "web_accessible_resources": [
    "images/*",
    "css/*",
    "js/*"
  ],
  "icons": {
    "16": "images/icons/logo_16.png",
    "32": "images/icons/logo_32.png",
    "48": "images/icons/logo_48.png",
    "128": "images/icons/logo_128.png"
  }
}