Click to Dial
Make phone numbers on any page click to dial.
Apa itu Click to Dial?
Click to Dial adalah ekstensi Chrome yang dikembangkan oleh Vodia Networks Inc., dan fitur utamanya adalah "Make phone numbers on any page click to dial.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Click to Dial
Unduh file ekstensi Click to Dial dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | Click to Dial |
ID | fjoflheglodmbjfgbhfamglcimbedoff |
URL Resmi | https://chromewebstore.google.com/detail/click-to-dial/fjoflheglodmbjfgbhfamglcimbedoff |
Deskripsi | Make phone numbers on any page click to dial. |
Ukuran File | 49.98 KB |
Jumlah Instalasi | 431 |
Versi Saat Ini | 3.0 |
Terakhir Diperbarui | 2020-05-28 |
Tanggal Publikasi | 2020-05-27 |
Pengembang | Vodia Networks Inc. |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://vodia.com |
Bahasa yang Didukung | 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" } } |