FusionPBX SelectToCall

Select phone numbers and right click to call

FusionPBX SelectToCall क्या है?

FusionPBX SelectToCall https://robin.mulloy.ca द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Select phone numbers and right click to call"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में FusionPBX SelectToCall एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Implements a FusionPBX specific 'Select to Call' for phone numbers.  

If you are using the FusionPBX server for VOIP calling, this extension allows you to simply select any phone number on a browsed web page. Then after a right click it adds "Dial " to the context menu.  

Upon selecting the option, the phone number is passed to your VOIP extension which rings. Once you answer the ringing phone the PBX will call the clicked number for you.

The code is released under a BSD license and all code is available.

Updates:
March 2019 - changed option auto-answer=true
November 2020 - added auto-answer as config option

Source code is here:
https://github.com/gizmobin/FusionPBX-SelectToCall                    

एक्सटेंशन की मूल जानकारी

नाम FusionPBX SelectToCall FusionPBX SelectToCall
ID ghcmfikimieoeehcbgbdeegkgmpaihgg
आधिकारिक URL https://chromewebstore.google.com/detail/fusionpbx-selecttocall/ghcmfikimieoeehcbgbdeegkgmpaihgg
विवरण Select phone numbers and right click to call
फ़ाइल का आकार 38.72 KB
स्थापना संख्या 736
वर्तमान संस्करण 2.20.1118
अंतिम अपडेट 2020-11-20
प्रकाशन तिथि 2019-03-03
रेटिंग 5.00/5 कुल 3 रेटिंग्स
डेवलपर https://robin.mulloy.ca
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://robin.mulloy.ca/select-to-call-makes-calling-so-easy/
गोपनीयता नीति पृष्ठ URL https://robin.mulloy.ca/privacy-policy
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "FusionPBX SelectToCall",
    "version": "2.20.1118",
    "description": "Select phone numbers and right click to call",
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "options_page": "options.html",
    "browser_action": {
        "default_icon": {
            "16": "images\/icon16.png",
            "32": "images\/icon32.png",
            "128": "images\/icon128.png"
        },
        "default_title": "FusionPBX SelectToCall"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "icons": {
        "128": "images\/icon128.png"
    }
}