FortiVoice Click-to-dial
Initiate calls with FortiVoice from Chrome.
FortiVoice Click-to-dial란 무엇입니까?
FortiVoice Click-to-dial은(는) FortiVoice에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Initiate calls with FortiVoice from Chrome."입니다.
확장 프로그램 스크린샷
FortiVoice Click-to-dial 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
FortiVoice Click-to-dial works with in conjunction with your FortiVoice Enterprise phone system to allow you select a phone number from a website and automatically call the party using your phone system extension.
확장 프로그램 기본 정보
이름 | FortiVoice Click-to-dial |
ID | hnkgbaajmjmmlpfbemelmppaefelmbko |
공식 URL | https://chromewebstore.google.com/detail/fortivoice-click-to-dial/hnkgbaajmjmmlpfbemelmppaefelmbko |
설명 | Initiate calls with FortiVoice from Chrome. |
파일 크기 | 81.79 KB |
설치 횟수 | 338 |
현재 버전 | 1.0.10 |
최근 업데이트 | 2023-02-11 |
출시 날짜 | 2019-10-30 |
평점 | 3.14/5 총 7 개의 평점 |
개발자 | FortiVoice |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://www.fortivoice.com |
개인정보 보호 정책 페이지 URL | https://www.fortinet.com/corporate/about-us/privacy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "FortiVoice Click-to-dial", "version": "1.0.10", "description": "Initiate calls with FortiVoice from Chrome.", "manifest_version": 3, "icons": { "128": "images\/fv_corner_icon_128.png" }, "permissions": [ "storage" ], "host_permissions": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "options_ui": { "page": "views\/options.html" }, "background": { "service_worker": "scripts\/background.js" }, "web_accessible_resources": [ { "resources": [ "images\/phone_blue.png", "styles\/contentStyle.css" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/\/*" ] } ], "action": { "default_icon": "images\/fv_corner_icon_128.png", "default_popup": "views\/popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/\/*.htm", "file:\/\/\/*.html" ], "css": [ "styles\/contentStyle.css" ], "js": [ "scripts\/libphonenumber-max.min.js", "scripts\/util.js", "scripts\/requestUtil.js", "scripts\/content.js" ], "run_at": "document_idle", "all_frames": true, "match_about_blank": true } ], "content_security_policy": { "script-src": "self", "object-src": "self", "worker-src": "self" } } |