Click to Dial
Make phone numbers on any page click to dial.
Qu'est-ce que Click to Dial ?
Click to Dial est une extension Chrome développée par Vodia Networks Inc., et sa fonction principale est "Make phone numbers on any page click to dial.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Click to Dial
Téléchargez les fichiers d'extension Click to Dial au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
You can dial a number directly from a web page by selecting it and right clicking it to make either a webrtc call or a call through your desktop sip phone
Informations de Base sur l'Extension
Nom | Click to Dial |
ID | fjoflheglodmbjfgbhfamglcimbedoff |
URL Officiel | https://chromewebstore.google.com/detail/click-to-dial/fjoflheglodmbjfgbhfamglcimbedoff |
Description | Make phone numbers on any page click to dial. |
Taille du Fichier | 49.98 KB |
Nombre d'Installations | 431 |
Version Actuelle | 3.0 |
Dernière Mise à Jour | 2020-05-28 |
Date de Publication | 2020-05-27 |
Développeur | Vodia Networks Inc. |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://vodia.com |
Langues Prises en Charge | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Click to Dial", "short_name": "clicktodial", "version": "3.0", "description": "Make phone numbers on any page click to dial.", "browser_action": { "name": "Click to Dial", "icons": [ "icon.png" ], "default_icon": "icon.png", "default_popup": "settings.htm" }, "background": { "persistent": true, "scripts": [ "background.js" ] }, "content_scripts": [ { "js": [ "jquery-3.2.1.min.js", "clicktodial.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "web_accessible_resources": [ "*.png" ], "permissions": [ "storage", "contextMenus" ], "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png" } } |