IPVoice Call

Use IPVoice to call numbers in Chrome.

Was ist IPVoice Call?

IPVoice Call ist eine Chrome-Erweiterung, die von https://ipvoice.uk entwickelt wurde, und ihr Hauptmerkmal ist "Use IPVoice to call numbers in Chrome.".

Erweiterungsscreenshots

screenshot

IPVoice Call-Erweiterungs-CRX-Datei herunterladen

Laden Sie IPVoice Call-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name IPVoice Call IPVoice Call
ID loholemopmkafkdhekbmkgbfhfhcmkjl
Offizielle URL https://chromewebstore.google.com/detail/ipvoice-call/loholemopmkafkdhekbmkgbfhfhcmkjl
Beschreibung Use IPVoice to call numbers in Chrome.
Dateigröße 128 KB
Installationsanzahl 259
Aktuelle Version 7.0.0.1
Letztes Update 2024-01-25
Veröffentlichungsdatum 2022-02-02
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler https://ipvoice.uk
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://ipvoice.uk/
Hilfeseite URL https://ipvoice.uk/support
URL der Datenschutzrichtlinien-Seite https://ipvoice.uk/privacy
Unterstützte Sprachen 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
    }
}