ClearVox Nexxt click to call
A extension that detects numbers on webpages and sends them to your clearvox on click
ClearVox Nexxt click to callคืออะไร?
ClearVox Nexxt click to call เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://clearvox.nl และคุณลักษณะหลักของมันคือ "A extension that detects numbers on webpages and sends them to your clearvox on click"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ClearVox Nexxt click to call
ดาวน์โหลดไฟล์ส่วนขยาย ClearVox Nexxt click to call ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
With this extension you can click on a number on any webpage to quickly call. After installation, use the button in the top to fill in the url of your ClearVox Nexxt and API key. The plugin uses your SSL port to connect safely to the ClearVox.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | ClearVox Nexxt click to call |
ID | abpidkpcnhcdhahombmgajglihkdgoeh |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/clearvox-nexxt-click-to-c/abpidkpcnhcdhahombmgajglihkdgoeh |
คำอธิบาย | A extension that detects numbers on webpages and sends them to your clearvox on click |
ขนาดไฟล์ | 247 KB |
จำนวนการติดตั้ง | 941 |
เวอร์ชันปัจจุบัน | 1.13 |
อัปเดตครั้งล่าสุด | 2020-04-19 |
วันที่เผยแพร่ | 2020-04-16 |
คะแนน | 4.83/5 รวมทั้งหมด 6 คะแนน |
ผู้พัฒนา | https://clearvox.nl |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://clearvox.nl |
URL หน้าช่วยเหลือ | https://documentation.clearvox.nl/display/1/Chrome+CTI-extensie |
ภาษาที่รองรับ | en,nl |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_application_title__", "description": "__MSG_application_description__", "version": "1.13", "default_locale": "en", "icons": { "16": "icons\/16.png", "32": "icons\/32.png", "48": "icons\/48.png", "128": "icons\/128.png" }, "browser_action": { "default_icon": "icons\/32.png", "default_popup": "popup\/index.html", "default_title": "ClearVox click to call" }, "content_scripts": [ { "run_at": "document_start", "all_frames": true, "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "content_scripts\/index.js", "content_scripts\/components\/clearvoxNumber.js", "content_scripts\/components\/clearvoxGrowler.js" ] } ], "background": { "scripts": [ "background.js", "content_scripts\/contextMenu.js" ] }, "permissions": [ "storage", "tabs", "webRequest", "contextMenus", "http:\/\/*\/", "https:\/\/*\/" ] } |