Voipfone Browser Calls

Converts telephone numbers into links that can be clicked to place a call using the Voipfone callback service.

Voipfone Browser Calls란 무엇입니까?

Voipfone Browser Calls은(는) https://www.voipfone.co.uk에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Converts telephone numbers into links that can be clicked to place a call using the Voipfone callback service."입니다.

확장 프로그램 스크린샷

screenshot

Voipfone Browser Calls 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        The Voipfone Browser Calls extension recognises telephone numbers shown on a web page, and converts them to clickable links.

Simply click the link and the telephone registered to your Voipfone account will ring. When you answer, you will be connected to the number displayed on the webpage.

It's quick, easy, and no misdialled numbers!

You do not even need to have a VoIP telephone to use this service. Simply divert your Voipfone extension to your mobile or landline - very handy when on the move. And because you are receiving a call back rather than dialling it yourself, you will benefit from Voipfone's call rates, and may save money on roaming charges as well.                    

확장 프로그램 기본 정보

이름 Voipfone Browser Calls Voipfone Browser Calls
ID bpgcpopdoackjefpnpcibiekchjgccgp
공식 URL https://chromewebstore.google.com/detail/voipfone-browser-calls/bpgcpopdoackjefpnpcibiekchjgccgp
설명 Converts telephone numbers into links that can be clicked to place a call using the Voipfone callback service.
파일 크기 142 KB
설치 횟수 525
현재 버전 6.0.1
최근 업데이트 2022-07-01
출시 날짜 2019-08-13
평점 5.00/5 총 2 개의 평점
개발자 https://www.voipfone.co.uk
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://www.voipfone.co.uk/plugin_browser.php
도움말 페이지 URL http://www.voipfone.co.uk/support_how_to_use_the_chrome_extension.php
개인정보 보호 정책 페이지 URL https://www.voipfone.co.uk/your-data.php
지원되는 언어 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Voipfone Browser Calls",
    "homepage_url": "https:\/\/www.voipfone.co.uk",
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "64": "icons\/icon64.png",
        "128": "icons\/icon128.png",
        "256": "icons\/icon256.png"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "contextMenus",
        "storage",
        "webRequest",
        "webRequestBlocking",
        "https:\/\/api.voipfone.co.uk\/v1\/",
        "https:\/\/controlpanel.voipfone.co.uk\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "linkify.js"
            ]
        }
    ],
    "description": "Converts telephone numbers into links that can be clicked to place a call using the Voipfone callback service.",
    "version": "6.0.1"
}