Click to Dial
Make phone numbers on any page click to dial.
Wat is Click to Dial?
Click to Dial is een Chrome-extensie ontwikkeld door Vodia Networks Inc., en de belangrijkste functie is "Make phone numbers on any page click to dial.".
Extensie Screenshots
Download het CRX-bestand van de extensie Click to Dial
Download Click to Dial-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | Click to Dial |
ID | fjoflheglodmbjfgbhfamglcimbedoff |
Officiële URL | https://chromewebstore.google.com/detail/click-to-dial/fjoflheglodmbjfgbhfamglcimbedoff |
Beschrijving | Make phone numbers on any page click to dial. |
Bestandsgrootte | 49.98 KB |
Aantal Installaties | 431 |
Huidige Versie | 3.0 |
Laatst Bijgewerkt | 2020-05-28 |
Publicatiedatum | 2020-05-27 |
Ontwikkelaar | Vodia Networks Inc. |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://vodia.com |
Ondersteunde Talen | 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" } } |