VIP VoIP Click To Dial Extension

Provides click to dial functionality for a VIP VoIP customer.

Vad är VIP VoIP Click To Dial Extension?

VIP VoIP Click To Dial Extension är en Chrome-tillägg utvecklad av VIP VoIP Ltd, och dess huvudfunktion är "Provides click to dial functionality for a VIP VoIP customer.".

Tilläggsskärmbilder

screenshot

Ladda ner VIP VoIP Click To Dial Extension-förlängningens CRX-fil

Ladda ner VIP VoIP Click To Dial Extension-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

                        This extension provides click to dial functionality for VIP VoIP users.                    

Grundläggande Information om Tillägg

Namn VIP VoIP Click To Dial Extension VIP VoIP Click To Dial Extension
ID melhfihkjcojmhoigeacinafnbeidjbm
Officiell webbadress https://chromewebstore.google.com/detail/vip-voip-click-to-dial-ex/melhfihkjcojmhoigeacinafnbeidjbm
Beskrivning Provides click to dial functionality for a VIP VoIP customer.
Filstorlek 1.4 MB
Antal Installationer 155
Aktuell Version 1.24
Senast Uppdaterad 2023-07-26
Publiceringsdatum 2020-05-30
Utvecklare VIP VoIP Ltd
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://www.vipvoip.co.uk
URL till Sekretesspolicy Sidan https://www.vipvoip.co.uk/privacy-policy
Stödda Språk en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "VIP VoIP Click To Dial Extension",
    "description": "Provides click to dial functionality for a VIP VoIP customer.",
    "version": "1.24",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "icon128.png",
                "icon28.png",
                "telephone-svgrepo-com.png"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "content.css"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "permissions": [
        "background",
        "storage",
        "notifications"
    ],
    "icons": {
        "128": "icon128.png"
    }
}