Grandstream Wave Click2Dial

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

Vad är Grandstream Wave Click2Dial?

Grandstream Wave Click2Dial är en Chrome-tillägg utvecklad av https://grandstream.com, och dess huvudfunktion är "This plug-in can recognize phonenumber on the browsing page, and combine Grandstream Wave to speed dial.".

Tilläggsskärmbilder

screenshot

Ladda ner Grandstream Wave Click2Dial-förlängningens CRX-fil

Ladda ner Grandstream Wave Click2Dial-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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 .                    

Grundläggande Information om Tillägg

Namn Grandstream Wave Click2Dial Grandstream Wave Click2Dial
ID jmphnnnhjeigmcgilgifhjnkelemfdfc
Officiell webbadress https://chromewebstore.google.com/detail/grandstream-wave-click2di/jmphnnnhjeigmcgilgifhjnkelemfdfc
Beskrivning This plug-in can recognize phonenumber on the browsing page, and combine Grandstream Wave to speed dial.
Filstorlek 75.05 KB
Antal Installationer 1,728
Aktuell Version 1.0.11.7
Senast Uppdaterad 2023-11-02
Publiceringsdatum 2021-11-16
Betyg 1.33/5 Totalt 3 Betyg
Utvecklare https://grandstream.com
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://www.grandstream.com/
Hjälpsida URL https://www.grandstream.com/support
URL till Sekretesspolicy Sidan http://www.ipvideotalk.com/privacy-policy.html
Stödda Språk 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"
}