Byphone Number Linkify

An extension to turn phone numbers on pages into click to dial links.

What is Byphone Number Linkify?

Byphone Number Linkify is a Chrome extension developed by Voxbit Dev, and its main feature is "An extension to turn phone numbers on pages into click to dial links.".

Extension Screenshots

screenshot

Download Byphone Number Linkify Extension CRX File

Download Byphone Number Linkify extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Byphone Number Linkify is a handy chrome extension designed to make it easier to use click to dial with the Byphone Hosted PBX solution. It will auto scan web pages you visit to make it easier to dial any phone numbers on page. You can also highlight a body of text, right click and select "Click to Dial" to extract phone numbers.                    

Extension Basic Information

Name Byphone Number Linkify Byphone Number Linkify
ID lehkpanjomjggobemfabmiodmkbcnlnb
Official URL https://chromewebstore.google.com/detail/byphone-number-linkify/lehkpanjomjggobemfabmiodmkbcnlnb
Description An extension to turn phone numbers on pages into click to dial links.
File Size 281 KB
Installation Count 39
Current Version 0.0.4
Last Updated 2018-05-30
Publish Date 2018-05-30
Developer Voxbit Dev
Payment Type free
Extension Website https://byphone.co.uk
Help Page URL https://documentation.byphone.co.uk
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Byphone Number Linkify",
    "version": "0.0.4",
    "manifest_version": 2,
    "description": "An extension to turn phone numbers on pages into click to dial links.",
    "short_name": "Click To Dial on Byphone",
    "homepage_url": "http:\/\/byphone.co.uk",
    "permissions": [
        "storage",
        "contextMenus",
        "tabs",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "scripts": [
            "js\/shared.js",
            "js\/background.js"
        ],
        "persistent": true
    },
    "default_locale": "en",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/shared.js",
                "js\/libphonenumber-js.min.js",
                "js\/content.js"
            ],
            "css": [
                "css\/style.css"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "html\/popup.html",
        "default_icon": {
            "16": "icons\/icon16.png",
            "48": "icons\/icon48.png",
            "128": "icons\/icon128.png"
        }
    }
}