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은(는) https://clearvox.nl에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A extension that detects numbers on webpages and sends them to your clearvox on click"입니다.
확장 프로그램 스크린샷
ClearVox Nexxt click to call 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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:\/\/*\/" ] } |