Jolt Select Dial PBX
Make a PBX call from selected text
Jolt Select Dial PBX là gì?
Jolt Select Dial PBX là một tiện ích mở rộng Chrome được phát triển bởi JOLT, và tính năng chính của nó là "Make a PBX call from selected text".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Jolt Select Dial PBX
Tải xuống các tệp mở rộng Jolt Select Dial PBX dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Jolt Select Dial PBX |
ID | bjjgodajjgmjpgjhbphdnjjhpldkgjbk |
URL Chính Thức | https://chromewebstore.google.com/detail/jolt-select-dial-pbx/bjjgodajjgmjpgjhbphdnjjhpldkgjbk |
Mô tả | Make a PBX call from selected text |
Kích Thước Tệp | 107 KB |
Số Lần Cài Đặt | 1,804 |
Phiên Bản Hiện Tại | 1.7.2 |
Cập Nhật Lần Cuối | 2022-09-01 |
Ngày Phát Hành | 2016-06-22 |
Đánh Giá | 4.86/5 Tổng số 14 Đánh Giá |
Nhà Phát Triển | JOLT |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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", "*:\/\/*\/*" ] } |