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
官方網址 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"
        }
    }
}