Grandstream Click To Call

This extension allows remote control of your grandstream handset.

Grandstream Click To Callคืออะไร?

Grandstream Click To Call เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://jaimyn.com.au และคุณลักษณะหลักของมันคือ "This extension allows remote control of your grandstream handset."

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Grandstream Click To Call

ดาวน์โหลดไฟล์ส่วนขยาย Grandstream Click To Call ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        GS CTC is a chrome extension that allows you to click on a phone number and send it directly to a grandstream handset to initiate a call. It's also got many other features.

Features

Accept/End an incoming/current call
Put the current call on hold
Reboot the handset
See current status of phone
Type a number and send the call to the handset
Recognise tel: links and start a call on the handset when clicked


Usage

Click the green/teal phone icon that appears in your browsers extension area. (usually the top right) Here you can see the IP you've set and the current status (will take a moment to update on first open) Every 2 seconds the extension updates the status of the phone by sending it a request. From the extension you can click the buttons to Accept/End/Hold a call and reboot the handset. Please note the hold button only works during a call and the reboot button will immediately reboot the handset.

Click To Call

Currently, the click to call feature only has limited support. There are too many different phone formats on the web so at the moment GS CTC only suppors phone numbers inside a link  and those that start with tel:. Support for different numbers will eventually come. To activate click to call, simply click on the link and the handset will immediately start a call.

Notifications

Whenever a call is started or other action clicked, you'll get a chrome notification. When any call is made it confirms what number you're calling and lets you quickly cancel the call if it was started by mistake. All notifications should hang around for about 10 seconds, but you can dismiss it earlier with the "dismiss" button.


Planned Features

More support for different phone number formats
More user configurable options (refresh rate etc) from options page
Option to call selected text when right clicking on a text selection
License

This entire project is open source. It's available under the GNU GPL v3 or later license. Basically, this means you can use it for whatever you want as long as you release any modifications under the same license.                    

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

ชื่อ Grandstream Click To Call Grandstream Click To Call
ID pgdncclokadpgmdbakidmdajhggioigg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/grandstream-click-to-call/pgdncclokadpgmdbakidmdajhggioigg
คำอธิบาย This extension allows remote control of your grandstream handset.
ขนาดไฟล์ 63.74 KB
จำนวนการติดตั้ง 720
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2017-05-15
วันที่เผยแพร่ 2017-05-15
คะแนน 4.38/5 รวมทั้งหมด 8 คะแนน
ผู้พัฒนา https://jaimyn.com.au
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/jabelone/grandstreamClickToCall
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Grandstream Click To Call",
    "description": "This extension allows remote control of your grandstream handset.",
    "version": "1.0",
    "icons": {
        "16": "assets\/icons\/icon.png",
        "48": "assets\/icons\/icon.png",
        "128": "assets\/icons\/icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "find_numbers.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "popup.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "assets\/icons\/icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "http:\/\/*\/",
        "notifications",
        "storage"
    ],
    "options_page": "options.html"
}