Jolt Select Dial PBX

Make a PBX call from selected text

Jolt Select Dial PBX란 무엇입니까?

Jolt Select Dial PBX은(는) JOLT에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Make a PBX call from selected text"입니다.

확장 프로그램 스크린샷

screenshot

Jolt Select Dial PBX 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This Google Chrome Extension is built for FreePBX. It allows you to either highlight a number then right click and select call or click the icon in the extension menu and type or paste in the number to call.

This will also require you to add a php file to your pbx server to  accept the incoming request and to make a manager user which you will enter in the php file.

Download PHP File at GitHub Link below
https://github.com/Jolt1/Jolt-Select-Dial-PBX


Instructions on how to configure Chrome Extension 
https://www.youtube.com/watch?v=NgU84smstGg

Instructions on how to configure PHP File
https://www.youtube.com/watch?v=_qhy47BBBUE



---------------------------------
NEW IN VERSION 1.5.1:
-Added in a re-dial last number link in the popup window.
-Added 3 speed dial slots which can be programmed in in the Options menu. 
-General bug fixes.
---------------------------------
NEW IN VERSION 1.7.1:
-Speed Dial now allows you to add unlimited numbers.
 -General bug fixes.                    

확장 프로그램 기본 정보

이름 Jolt Select Dial PBX Jolt Select Dial PBX
ID bjjgodajjgmjpgjhbphdnjjhpldkgjbk
공식 URL https://chromewebstore.google.com/detail/jolt-select-dial-pbx/bjjgodajjgmjpgjhbphdnjjhpldkgjbk
설명 Make a PBX call from selected text
파일 크기 107 KB
설치 횟수 1,804
현재 버전 1.7.2
최근 업데이트 2022-09-01
출시 날짜 2016-06-22
평점 4.86/5 총 14 개의 평점
개발자 JOLT
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Jolt Select Dial PBX",
    "short_name": "Jolt Dial",
    "version": "1.7.2",
    "manifest_version": 2,
    "description": "Make a PBX call from selected text",
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "options_page": "options.html",
    "browser_action": {
        "default_icon": "img\/icon128.png",
        "default_popup": "popup.html",
        "default_title": "JOLT PBX Dial"
    },
    "background": {
        "scripts": [
            "js\/jquery-1.8.0.min.js",
            "js\/bg.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "js\/fg.js"
            ]
        }
    ],
    "permissions": [
        "contextMenus",
        "*:\/\/*\/*"
    ]
}