IPVoice Call

Use IPVoice to call numbers in Chrome.

Vad är IPVoice Call?

IPVoice Call är en Chrome-tillägg utvecklad av https://ipvoice.uk, och dess huvudfunktion är "Use IPVoice to call numbers in Chrome.".

Tilläggsskärmbilder

screenshot

Ladda ner IPVoice Call-förlängningens CRX-fil

Ladda ner IPVoice Call-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

                        Use IPVoice Desktop App to call numbers in Google Chrome. Allows click to dial from any webpage that has a valid phone number and will make using the IPVoice Desktop App.                    

Grundläggande Information om Tillägg

Namn IPVoice Call IPVoice Call
ID loholemopmkafkdhekbmkgbfhfhcmkjl
Officiell webbadress https://chromewebstore.google.com/detail/ipvoice-call/loholemopmkafkdhekbmkgbfhfhcmkjl
Beskrivning Use IPVoice to call numbers in Chrome.
Filstorlek 128 KB
Antal Installationer 259
Aktuell Version 7.0.0.1
Senast Uppdaterad 2024-01-25
Publiceringsdatum 2022-02-02
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare https://ipvoice.uk
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://ipvoice.uk/
Hjälpsida URL https://ipvoice.uk/support
URL till Sekretesspolicy Sidan https://ipvoice.uk/privacy
Stödda Språk en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "IPVoice Ltd.",
    "background": {
        "service_worker": "call_action.js"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "google_phone_lib.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start"
        },
        {
            "all_frames": false,
            "js": [
                "highlight_numbers.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end"
        }
    ],
    "description": "Use IPVoice to call numbers in Chrome.",
    "icons": {
        "128": "app128.png",
        "16": "app16.png",
        "32": "app32.png",
        "48": "app48.png"
    },
    "manifest_version": 3,
    "name": "IPVoice Call",
    "permissions": [
        "contextMenus",
        "storage"
    ],
    "version": "7.0.0.1",
    "web_accessible_resources": [
        {
            "resources": [
                "glocom_icon.jpg",
                "detectAjax.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    }
}