Click to Dial
Make phone numbers on any page click to dial.
Vad är Click to Dial?
Click to Dial är en Chrome-tillägg utvecklad av Vodia Networks Inc., och dess huvudfunktion är "Make phone numbers on any page click to dial.".
Tilläggsskärmbilder
Ladda ner Click to Dial-förlängningens CRX-fil
Ladda ner Click to Dial-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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
Grundläggande Information om Tillägg
Namn | Click to Dial |
ID | fjoflheglodmbjfgbhfamglcimbedoff |
Officiell webbadress | https://chromewebstore.google.com/detail/click-to-dial/fjoflheglodmbjfgbhfamglcimbedoff |
Beskrivning | Make phone numbers on any page click to dial. |
Filstorlek | 49.98 KB |
Antal Installationer | 431 |
Aktuell Version | 3.0 |
Senast Uppdaterad | 2020-05-28 |
Publiceringsdatum | 2020-05-27 |
Utvecklare | Vodia Networks Inc. |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://vodia.com |
Stödda Språk | 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" } } |