Click to call

Detects telephone numbers on any web page, and turns them into clickable links. An account with an Enswitch provider running…

Was ist Click to call?

Click to call ist eine Chrome-Erweiterung, die von https://integrics.com entwickelt wurde, und ihr Hauptmerkmal ist "Detects telephone numbers on any web page, and turns them into clickable links. An account with an Enswitch provider running…".

Erweiterungsscreenshots

screenshot
screenshot

Click to call-Erweiterungs-CRX-Datei herunterladen

Laden Sie Click to 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

                        Detects telephone numbers on any web page, and turns them into clickable links.

An account with an Enswitch provider running Enswitch 3.13 or later is required.                    

Grundlegende Informationen zur Erweiterung

Name Click to call Click to call
ID oaogeindmfedfacmlioeinkoopbadapm
Offizielle URL https://chromewebstore.google.com/detail/click-to-call/oaogeindmfedfacmlioeinkoopbadapm
Beschreibung Detects telephone numbers on any web page, and turns them into clickable links. An account with an Enswitch provider running…
Dateigröße 220 KB
Installationsanzahl 297
Aktuelle Version 1.0.13
Letztes Update 2022-09-10
Veröffentlichungsdatum 2017-02-08
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler https://integrics.com
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite https://integrics.com/privacy/clients
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Click to call",
    "version": "1.0.13",
    "icons": {
        "16": "images\/icon16.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "mutation-summary.js",
                "jquery-3.1.0.min.js",
                "content.js"
            ],
            "css": [
                "content.css"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "options_page": "options.html",
    "permissions": [
        "contextMenus",
        "storage"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "file:\/\/*\/*"
    ],
    "action": {
        "default_icon": "images\/icon128.png",
        "default_title": ""
    },
    "background": {
        "service_worker": "bg.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "images\/phone.png",
                "images\/universal_link.gif",
                "options.html"
            ],
            "matches": [
                ""
            ]
        }
    ]
}