FortiVoice Click-to-dial
Initiate calls with FortiVoice from Chrome.
What is FortiVoice Click-to-dial?
FortiVoice Click-to-dial is a Chrome extension developed by FortiVoice, and its main feature is "Initiate calls with FortiVoice from Chrome.".
Extension Screenshots
Download FortiVoice Click-to-dial Extension CRX File
Download FortiVoice Click-to-dial extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | FortiVoice Click-to-dial |
ID | hnkgbaajmjmmlpfbemelmppaefelmbko |
Official URL | https://chromewebstore.google.com/detail/fortivoice-click-to-dial/hnkgbaajmjmmlpfbemelmppaefelmbko |
Description | Initiate calls with FortiVoice from Chrome. |
File Size | 81.79 KB |
Installation Count | 338 |
Current Version | 1.0.10 |
Last Updated | 2023-02-11 |
Publish Date | 2019-10-30 |
Rating | 3.14/5 Total 7 Ratings |
Developer | FortiVoice |
[email protected] | |
Payment Type | free |
Extension Website | http://www.fortivoice.com |
Privacy Policy Page URL | https://www.fortinet.com/corporate/about-us/privacy |
Supported Languages | 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" } } |