Wazo extension
Wazo click to call and popup call extension for Chrome
What is Wazo extension?
Wazo extension is a Chrome extension developed by Wazo Dev Team, and its main feature is "Wazo click to call and popup call extension for Chrome".
Extension Screenshots
Download Wazo extension Extension CRX File
Download Wazo extension 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
This extension permit to have click to call on callto: and tel: url. It also open an url when you answer to call. Works only with Wazo enterprise.
Extension Basic Information
Name | Wazo extension |
ID | aennlhiijkmahiflpdglbknpecfgnile |
Official URL | https://chromewebstore.google.com/detail/wazo-extension/aennlhiijkmahiflpdglbknpecfgnile |
Description | Wazo click to call and popup call extension for Chrome |
File Size | 2.78 MB |
Installation Count | 980 |
Current Version | 1.1.1 |
Last Updated | 2023-05-11 |
Publish Date | 2020-04-14 |
Rating | 5.00/5 Total 4 Ratings |
Developer | Wazo Dev Team |
[email protected] | |
Payment Type | free |
Extension Website | https://www.wazo.io |
Help Page URL | https://support.wazo.io |
Privacy Policy Page URL | https://wazo.io/privacy-policy |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Wazo click to call and popup call extension for Chrome", "version": "1.1.1", "name": "Wazo extension", "manifest_version": 3, "icons": { "16": "icon-16.png", "48": "icon-48.png", "60": "icon-60.png", "128": "icon-128.png" }, "action": { "default_title": "Wazo extension", "default_icon": "icon-60.png", "default_popup": "popup.html" }, "options_ui": { "page": "options.html", "open_in_tab": true }, "content_security_policy": { "extension_pages": "script-src 'self'; default-src 'self'; font-src 'self' https:\/\/fonts.gstatic.com; style-src 'self' 'unsafe-inline' https:\/\/fonts.googleapis.com; connect-src *", "sandbox": "sandbox allow-scripts; script-src 'self'; font-src 'self' https:\/\/fonts.gstatic.com; style-src 'self' 'unsafe-inline' https:\/\/fonts.googleapis.com; connect-src *" }, "background": { "service_worker": "background.js" }, "web_accessible_resources": [ { "resources": [ "*" ], "matches": [ "*:\/\/*\/*" ] } ], "permissions": [ "activeTab", "tabs", "notifications", "storage", "scripting", "offscreen" ], "host_permissions": [ "*:\/\/*\/" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ] } |