Grandstream Wave Click2Dial

This plug-in can recognize phonenumber on the browsing page, and combine Grandstream Wave to speed dial.

Grandstream Wave Click2Dialคืออะไร?

Grandstream Wave Click2Dial เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://grandstream.com และคุณลักษณะหลักของมันคือ "This plug-in can recognize phonenumber on the browsing page, and combine Grandstream Wave to speed dial."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Grandstream Wave Click2Dial

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

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

                        If the users want to make a quick call with Grandstream Wave on the browser page , they can install the extension. The extension will check the phone number on the browsing page and add a hyperlink once phone number detected. The users can click the phone number and launch the Grandstream Wave to make a call .                    

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

ชื่อ Grandstream Wave Click2Dial Grandstream Wave Click2Dial
ID jmphnnnhjeigmcgilgifhjnkelemfdfc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/grandstream-wave-click2di/jmphnnnhjeigmcgilgifhjnkelemfdfc
คำอธิบาย This plug-in can recognize phonenumber on the browsing page, and combine Grandstream Wave to speed dial.
ขนาดไฟล์ 75.05 KB
จำนวนการติดตั้ง 1,728
เวอร์ชันปัจจุบัน 1.0.11.7
อัปเดตครั้งล่าสุด 2023-11-02
วันที่เผยแพร่ 2021-11-16
คะแนน 1.33/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา https://grandstream.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://www.grandstream.com/
URL หน้าช่วยเหลือ https://www.grandstream.com/support
URL หน้านโยบายความเป็นส่วนตัว http://www.ipvideotalk.com/privacy-policy.html
ภาษาที่รองรับ en
manifest.json
{
    "name": "Grandstream Wave Click2Dial",
    "description": "This plug-in can recognize phonenumber on the browsing page, and combine Grandstream Wave to speed dial.",
    "version": "1.0.11.7",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "css": [
                "content.css"
            ],
            "js": [
                "content.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end"
        }
    ],
    "action": {
        "default_icon": {
            "16": "icon16.png",
            "96": "icon96.png",
            "128": "icon128.png"
        },
        "default_title": "Wave"
    },
    "icons": {
        "16": "icon16.png",
        "96": "icon96.png",
        "128": "icon128.png"
    },
    "options_ui": {
        "open_in_tab": false,
        "page": "options.html"
    },
    "permissions": [
        "contextMenus",
        "activeTab",
        "background"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "short_name": "Wave",
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx"
}