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.”。
扩展截图
下载Voipfone Browser Calls扩展crx文件
下载Voipfone Browser Calls扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 |
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" } |