BroadCloud EMEA Dialer for Google Chrome™

A Google Chrome™ extension that provides BroadWorks telephony integration.

BroadCloud EMEA Dialer for Google Chrome™คืออะไร?

BroadCloud EMEA Dialer for Google Chrome™ เป็นส่วนขยายของ Chrome ที่พัฒนาโดย bcpbxgoogledev และคุณลักษณะหลักของมันคือ "A Google Chrome™ extension that provides BroadWorks telephony integration."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย BroadCloud EMEA Dialer for Google Chrome™

ดาวน์โหลดไฟล์ส่วนขยาย BroadCloud EMEA Dialer for Google Chrome™ ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        The EMEA BroadCloud Chrome Dialer is a reference extension built from the BroadSoft Xtended Open Source Initiative project located at https://github.com/broadsoftxtended/dialer-for-chrome.

******************************
Note: This reference extension is to be used as an example of some of the features that can be provided using BroadWorks Xtended APIs in a Google Chrome Extension to initiate and control calls. It will only work in conjunction with a service from a service provider. 
****************************** 

EMEA* BroadCloud Chrome Dialer Functionality includes:

• Search Google contacts and BroadCloud PBX enterprise directory to initiate a click to dial

• View call logs and double-click to initiate a click to dial

• NEW: Call control buttons for hang up and hold of multiple calls

• Display a click to dial icon next to phone numbers on web pages

• BroadCloud PBX call settings control of Remote Office, Call Forwarding Always and Do Not Disturb

• Initiate a search and click to dial from the address bar by entering -call

• Receive incoming call notifications, with text to speech, with the ability to answer (using an auto answer provisioned endpoint/device) or decline

• Preferences to disable click to call on web pages, call notifications and text to speech

*This application will only work with the EMEA BroadCloud environment.

Chrome is a trademark of Google Inc. Use of this trademark is subject to Google Permissions.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ BroadCloud EMEA Dialer for Google Chrome™ BroadCloud EMEA Dialer for Google Chrome™
ID oldegofmfampmimhcnadldjchibobdfp
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/broadcloud-emea-dialer-fo/oldegofmfampmimhcnadldjchibobdfp
คำอธิบาย A Google Chrome™ extension that provides BroadWorks telephony integration.
ขนาดไฟล์ 246 KB
จำนวนการติดตั้ง 612
เวอร์ชันปัจจุบัน 1.610
อัปเดตครั้งล่าสุด 2016-05-05
วันที่เผยแพร่ 2016-05-05
ผู้พัฒนา bcpbxgoogledev
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-GB
manifest.json
{
    "name": "BroadCloud EMEA Dialer for Google Chrome\u2122",
    "short_name": "BroadCloud EMEA Dialer",
    "description": "A Google Chrome\u2122 extension that provides BroadWorks telephony integration.",
    "version": "1.610",
    "oauth2": {
        "client_id": "306006362859-vvtlggurj4rkl5bv7htcnspii8pt8goe.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.google.com\/m8\/feeds\/"
        ]
    },
    "omnibox": {
        "keyword": "-call"
    },
    "background": {
        "page": "background.html",
        "persistent": true
    },
    "content_scripts": [
        {
            "all_frames": true,
            "css": [
                "injected.css",
                "jquery-ui.css"
            ],
            "js": [
                "jquery.js",
                "jquery.base64.js",
                "contentscript.js",
                "xsiactions.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_idle"
        }
    ],
    "manifest_version": 2,
    "browser_action": {
        "default_icon": "images\/popup_icon.png",
        "default_popup": "options.html"
    },
    "icons": {
        "128": "images\/icon_128x128.png",
        "16": "images\/icon_16x16.png",
        "48": "images\/icon_48x48.png"
    },
    "options_page": "options.html",
    "permissions": [
        "notifications",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "tts",
        "identity"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "web_accessible_resources": [
        "images\/click2dial.png",
        "injected.js"
    ]
}