Wazo extension

Wazo click to call and popup call extension for Chrome

ما هو Wazo extension؟

Wazo extension هو إضافة Chrome تم تطويرها بواسطة Wazo Dev Team، والميزة الرئيسية لها هي "Wazo click to call and popup call extension for Chrome".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Wazo extension

قم بتنزيل ملفات الامتداد Wazo extension بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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.                    

معلومات أساسية عن التمديد

الاسم Wazo extension Wazo extension
ID aennlhiijkmahiflpdglbknpecfgnile
عنوان URL الرسمي https://chromewebstore.google.com/detail/wazo-extension/aennlhiijkmahiflpdglbknpecfgnile
الوصف Wazo click to call and popup call extension for Chrome
حجم الملف 2.78 MB
عدد التثبيتات 980
النسخة الحالية 1.1.1
آخر تحديث 2023-05-11
تاريخ النشر 2020-04-14
تقييم 5.00/5 مجموع تقييمات 4
المطور Wazo Dev Team
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://www.wazo.io
عنوان صفحة المساعدة https://support.wazo.io
عنوان صفحة سياسة الخصوصية https://wazo.io/privacy-policy
اللغات المدعومة 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"
        }
    ]
}