Asterisk Click2Call

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

Asterisk Click2Call란 무엇입니까?

Asterisk Click2Call은(는) https://bitree.ru에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Calls a phone number highlighted on a web page using Asterisk PBX"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Asterisk Click2Call 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Asterisk Click2Call Asterisk Click2Call
ID hlnmjkbpmnbgeondjeceaomhafdacmlj
공식 URL https://chromewebstore.google.com/detail/asterisk-click2call/hlnmjkbpmnbgeondjeceaomhafdacmlj
설명 Calls a phone number highlighted on a web page using Asterisk PBX
파일 크기 320 KB
설치 횟수 1,951
현재 버전 0.0.5.7
최근 업데이트 2021-08-04
출시 날짜 2018-12-14
평점 3.82/5 총 17 개의 평점
개발자 https://bitree.ru
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://bitree.ru/click2call4chrome_en.html
지원되는 언어 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"
    }
}