Byphone Number Linkify

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

什么是Byphone Number Linkify?

Byphone Number Linkify是由Voxbit Dev开发的Chrome扩展程序,该扩展的主要功能是“An extension to turn phone numbers on pages into click to dial links.”。

扩展截图

screenshot

下载Byphone Number Linkify扩展crx文件

下载Byphone Number Linkify扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Byphone Number Linkify Byphone Number Linkify
ID lehkpanjomjggobemfabmiodmkbcnlnb
官方URL https://chromewebstore.google.com/detail/byphone-number-linkify/lehkpanjomjggobemfabmiodmkbcnlnb
简介 An extension to turn phone numbers on pages into click to dial links.
文件大小 281 KB
安装次数 39
当前版本 0.0.4
更新时间 2018-05-30
上架时间 2018-05-30
开发者 Voxbit Dev
付费类型 free
扩展官网 https://byphone.co.uk
帮助页面URL https://documentation.byphone.co.uk
支持的语言 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"
        }
    }
}