Asterisk Click2Call

Calls a phone number highlighted on a web page using Asterisk PBX

¿Qué es Asterisk Click2Call?

Asterisk Click2Call es una extensión de Chrome desarrollada por https://bitree.ru, y su función principal es "Calls a phone number highlighted on a web page using Asterisk PBX".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Asterisk Click2Call

Descarga archivos de extensión Asterisk Click2Call en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        Asterisk Click2Call extension allows you to dial any phone number directly from the browser with your Asterisk PBX.
Make phone calls from any web pages or web-based applications such as CRM systems, HelpDesk, etc.
Features:
* Supporting AMI, AJAM and ARI interfaces
* Calling selected phone number from context menu
* Searching phone numbers with RegExp and converting them into clickable links 
* Incoming calls notification (ARI only)
* Providing an URL to open when clicking on incoming call notification (e.g. to open customer profile or to create a new HelpDesk ticket)
* Calls history with ability to redial by clicking on the history entry (only outgoing calls are being logged when using AMI or AJAM).

Use https://c2c.bitree.ru to obtain multi-user license for Premium features.                    

Información Básica de la Extensión

Nombre Asterisk Click2Call Asterisk Click2Call
ID hlnmjkbpmnbgeondjeceaomhafdacmlj
URL Oficial https://chromewebstore.google.com/detail/asterisk-click2call/hlnmjkbpmnbgeondjeceaomhafdacmlj
Descripción Calls a phone number highlighted on a web page using Asterisk PBX
Tamaño del Archivo 320 KB
Cantidad de Instalaciones 1,951
Versión Actual 0.0.5.7
Última Actualización 2021-08-04
Fecha de Publicación 2018-12-14
Calificación 3.82/5 Total de 17 Calificaciones
Desarrollador https://bitree.ru
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión http://bitree.ru/click2call4chrome_en.html
Idiomas Soportados de,en,fr,nl,no,tr,ca,da,es,hr,it,hu,pl,ro,sk,sl,fi,sv,cs,el,ru,uk,iw,th,ar,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Asterisk Click2Call",
    "version": "0.0.5.7",
    "author": "Bitree",
    "manifest_version": 2,
    "icons": {
        "16": "phone16.png",
        "48": "phone48.png",
        "128": "phone128.png"
    },
    "description": "Calls a phone number highlighted on a web page using Asterisk PBX",
    "default_locale": "en",
    "permissions": [
        "contextMenus",
        "notifications",
        "storage"
    ],
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "buy.js",
                "highlight.js",
                "license.js"
            ],
            "run_at": "document_end"
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com https:\/\/connect.facebook.net; object-src 'self'",
    "background": {
        "scripts": [
            "call.js",
            "license.js",
            "buy.js"
        ]
    },
    "options_page": "options.html",
    "web_accessible_resources": [
        "phone16.png",
        "phone16_disabled.png",
        "phone48.png",
        "scripts.js",
        "sale.png"
    ],
    "browser_action": {
        "default_icon": {
            "16": "phone16.png"
        },
        "default_title": "Asterisk Click2Call: clickable links ON"
    }
}