Tel Linker

Locates telephone numbers on a page and converts them into clickable links.

Tel Linker란 무엇입니까?

Tel Linker은(는) KOTRS에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Locates telephone numbers on a page and converts them into clickable links."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Tel Linker 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        By default, the extension only supports U.S. phone numbers, however users can add custom matching Regular Expression. I recommend testing your regex at https://regex101.com/. When formatting the links, the groups are filled in using {#}. If the regex test showing matching group 1 is 67, then {1} will be replaced with 67. {0} will always replace with the originally matched string.

Keep in mind that in order to use this extension you must have software which can bind on your protocol of choice (see windows default programs, default programs by protocol)! Applications like Cisco Jabber, Skype, VerticalWave Dialer, etc. Either that or you have to have a phone system that supports some kind of http/https dialing, ie: http://callsystem.mycompany/call?number={1}{2}{3}

When matching phone numbers, it will provides 4 replacement variables for you to work with. {0} translates to the original number, in its a original state. {1} is the area code, {2} is the 3 digit part, and {3} is the four digit part.

EG: (555) 666-7777
{0} = (555) 666-7777
{1} = 555
{2} = 666
{3} = 7777

The default settings create a tel link, formatted as +1-555-666-7777, without changing the actual displayed text. If you need to use something other than tel, would like a different format, or need another dial out code, just change it in options! I would recommend that you not use the {0} replacement for the actual Tel Link portion, simply because some websites have decided to use 'pretty' formatting on their phone numbers, ie: 555.666.7777. Using periods in a phone number, for most phone clients, is not valid. The standard is to use either dashes to separate the numbers ({1}-{2}-{3}) or to simply have no separation ({1}{2}{3}).

If for some reason the extension misses a phone number, you can also try selecting the phone number and right clicking to use the context menu option. It will still try and apply the matching standards on the number just in case the issue was related to some odd DOM circumstance; if it can't match a phone number, it will simply parse out whatever protocol you've set and stick it in front of whatever you have highlighted.

You can also choose to mark either a single page or an entire domain as 'filtered', meaning Tel Linker will not find and replace phone numbers for that page/domain. To do so, just click the phone icon to the right of your address bar, and choose the option you prefer. To re-enable Tel Linker for the domain/page, just repeat the process, or go to the extension options and remove the domain/page from the filtered list.

If you run into any glitches, or have any suggestions, feel free to comment about it; I like to tinker with things in my spare time!                    

확장 프로그램 기본 정보

이름 Tel Linker Tel Linker
ID ceiihmdnpjglaoolchdmncoffhhbgodj
공식 URL https://chromewebstore.google.com/detail/tel-linker/ceiihmdnpjglaoolchdmncoffhhbgodj
설명 Locates telephone numbers on a page and converts them into clickable links.
파일 크기 16.82 KB
설치 횟수 4,663
현재 버전 0.5.3
최근 업데이트 2019-02-05
출시 날짜 2019-02-05
평점 4.45/5 총 20 개의 평점
개발자 KOTRS
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/mjones2219/TelLinker/
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tel Linker",
    "version": "0.5.3",
    "manifest_version": 2,
    "description": "Locates telephone numbers on a page and converts them into clickable links.",
    "permissions": [
        "storage",
        "contextMenus",
        "tabs"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_idle",
            "all_frames": true
        }
    ],
    "browser_action": {
        "default_title": "Tel Linker - Filter",
        "default_popup": "browser_action.html"
    },
    "icons": {
        "16": "icon16.png",
        "128": "icon128.png"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}