Wazo extension
Wazo click to call and popup call extension for Chrome
Wat is Wazo extension?
Wazo extension is een Chrome-extensie ontwikkeld door Wazo Dev Team, en de belangrijkste functie is "Wazo click to call and popup call extension for Chrome".
Extensie Screenshots
Download het CRX-bestand van de extensie Wazo extension
Download Wazo extension-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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. Basisinformatie over de Extensie
| Naam | |
| ID | aennlhiijkmahiflpdglbknpecfgnile |
| Officiële URL | https://chromewebstore.google.com/detail/wazo-extension/aennlhiijkmahiflpdglbknpecfgnile |
| Beschrijving | Wazo click to call and popup call extension for Chrome |
| Bestandsgrootte | 2.78 MB |
| Aantal Installaties | 980 |
| Huidige Versie | 1.1.1 |
| Laatst Bijgewerkt | 2023-05-11 |
| Publicatiedatum | 2020-04-14 |
| Beoordeling | 5.00/5 Totaal 4 Beoordelingen |
| Ontwikkelaar | Wazo Dev Team |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://www.wazo.io |
| Help Pagina-URL | https://support.wazo.io |
| URL van de Privacybeleid Pagina | https://wazo.io/privacy-policy |
| Ondersteunde Talen | 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"
}
]
} | |