Telephone Number Detection

Automatically highlight phone numbers

什麼是Telephone Number Detection?

Telephone Number Detection是由CTI-Telephony開發的Chrome擴展程式,該擴展的主要功能是“Automatically highlight phone numbers”。

擴展截圖

screenshot
screenshot

下載Telephone Number Detection擴展crx文件

下載Telephone Number Detection擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This extension will update all telephone numbers on a page, with the ability to dial.

Required: Software to receive dial events.

Changes:
========

Version 1.2.5:
--------------
- Fixed: Some european numbers failing detection.
- Fixed: Some numbers length misconstrued if multiple non-numeric found.

Version 1.2.2:
--------------
- Feature: Can disable double forward-slash ('//') notation.

Version 1.2.1:
--------------
- Fixed: Updated method to invoke a call.
- Fixed: Code standardisation.

Version 1.1.9:
--------------
- Fixed: Failure to update page.
- Fixed: Issue where text contained excessive whitespace.
- Fixed: Updated Chrome API.

Version 1.1.8:
--------------
- Added: Skype protocol.

Version 1.1.7:
--------------
- Updated search patterns.
- Options: Can select protocol type to use. (instead of just 'dial:')
- Options: Option to replace existing clickable telephone numbers on web pages.
- Paragraphs with multiple numbers no longer gets ignored.
- Fixed issue where some sites break the phone icon transparency.


Version 1.1.6:
--------------
- Updated number detection.
- Better Google Contacts Support*. (Note: Number invokes Google dialler, icon invokes your preferred dialler.)
- Options panel: Set Min/Max number length.

=======================================================
(*Google Contacts not officially supported.)                    

擴展基本資訊

名稱 Telephone Number Detection Telephone Number Detection
ID oolkfddhhccdciigjigaghblnlkbgjki
官方網址 https://chromewebstore.google.com/detail/telephone-number-detectio/oolkfddhhccdciigjigaghblnlkbgjki
簡介 Automatically highlight phone numbers
檔案大小 58.18 KB
安裝次數 48,698
目前版本 1.2.5
更新時間 2020-11-16
上架時間 2017-12-11
評分 4.11/5 共 47 次評分
開發者 CTI-Telephony
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "js\/patch.js",
            "js\/jquery-3.2.1.min.js",
            "js\/Process.js",
            "js\/Background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "js\/patch.js",
                "js\/jquery-3.2.1.min.js",
                "js\/ContentPage.js"
            ],
            "all_frames": true,
            "matches": [
                ""
            ],
            "run_at": "document_end"
        }
    ],
    "name": "Telephone Number Detection",
    "description": "Automatically highlight phone numbers",
    "author": "CTI-Telephony",
    "version": "1.2.5",
    "manifest_version": 2,
    "options_ui": {
        "page": "options\/options.html"
    },
    "permissions": [
        "storage"
    ],
    "browser_action": {
        "default_icon": {
            "19": "images\/Icon19.png",
            "32": "images\/Icon32.png",
            "48": "images\/Icon48.png",
            "128": "images\/Icon128.png"
        },
        "default_title": "Telephone number detection"
    },
    "icons": {
        "19": "images\/Icon19.png",
        "32": "images\/Icon32.png",
        "48": "images\/Icon48.png",
        "128": "images\/Icon128.png"
    }
}