Voipfone Browser Calls
Converts telephone numbers into links that can be clicked to place a call using the Voipfone callback service.
Was ist Voipfone Browser Calls?
Voipfone Browser Calls ist eine Chrome-Erweiterung, die von https://www.voipfone.co.uk entwickelt wurde, und ihr Hauptmerkmal ist "Converts telephone numbers into links that can be clicked to place a call using the Voipfone callback service.".
Erweiterungsscreenshots
Voipfone Browser Calls-Erweiterungs-CRX-Datei herunterladen
Laden Sie Voipfone Browser Calls-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Voipfone Browser Calls |
ID | bpgcpopdoackjefpnpcibiekchjgccgp |
Offizielle URL | https://chromewebstore.google.com/detail/voipfone-browser-calls/bpgcpopdoackjefpnpcibiekchjgccgp |
Beschreibung | Converts telephone numbers into links that can be clicked to place a call using the Voipfone callback service. |
Dateigröße | 142 KB |
Installationsanzahl | 525 |
Aktuelle Version | 6.0.1 |
Letztes Update | 2022-07-01 |
Veröffentlichungsdatum | 2019-08-13 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | https://www.voipfone.co.uk |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | http://www.voipfone.co.uk/plugin_browser.php |
Hilfeseite URL | http://www.voipfone.co.uk/support_how_to_use_the_chrome_extension.php |
URL der Datenschutzrichtlinien-Seite | https://www.voipfone.co.uk/your-data.php |
Unterstützte Sprachen | 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" } |