Jolt Select Dial PBX
Make a PBX call from selected text
Jolt Select Dial PBX क्या है?
Jolt Select Dial PBX JOLT द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Make a PBX call from selected text"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Jolt Select Dial PBX एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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", "*:\/\/*\/*" ] } |