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 là gì?
ClearVox Nexxt click to call là một tiện ích mở rộng Chrome được phát triển bởi https://clearvox.nl, và tính năng chính của nó là "A extension that detects numbers on webpages and sends them to your clearvox on click".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng ClearVox Nexxt click to call
Tải xuống các tệp mở rộng ClearVox Nexxt click to call dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | ClearVox Nexxt click to call |
ID | abpidkpcnhcdhahombmgajglihkdgoeh |
URL Chính Thức | https://chromewebstore.google.com/detail/clearvox-nexxt-click-to-c/abpidkpcnhcdhahombmgajglihkdgoeh |
Mô tả | A extension that detects numbers on webpages and sends them to your clearvox on click |
Kích Thước Tệp | 247 KB |
Số Lần Cài Đặt | 941 |
Phiên Bản Hiện Tại | 1.13 |
Cập Nhật Lần Cuối | 2020-04-19 |
Ngày Phát Hành | 2020-04-16 |
Đánh Giá | 4.83/5 Tổng số 6 Đánh Giá |
Nhà Phát Triển | https://clearvox.nl |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://clearvox.nl |
URL Trang Trợ Giúp | https://documentation.clearvox.nl/display/1/Chrome+CTI-extensie |
Ngôn Ngữ Được Hỗ Trợ | 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:\/\/*\/" ] } |