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"
        }
    }
}