FoxTel Click To Call

This extension detects phone numbers and add phone icon with link to an external application.

Qu'est-ce que FoxTel Click To Call ?

FoxTel Click To Call est une extension Chrome développée par Turfanza Solutions, et sa fonction principale est "This extension detects phone numbers and add phone icon with link to an external application.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension FoxTel Click To Call

Téléchargez les fichiers d'extension FoxTel Click To Call au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        Dial a phone number by just clicking on it while surfing the web.

Click To Call extension detects phone numbers from the web pages and add a phone icon with link to selected protocol.

*Protocols can be selected from Options page.
*It recognizes US phone numbers by default. Users can opt to use custom regex pattern for detection.
*It also works on dynamic web pages that loads content on the fly.

This extension requires an external application that can handle tel, sip or callto protocols.                    

Informations de Base sur l'Extension

Nom FoxTel Click To Call FoxTel Click To Call
ID agfjggaihnlnaeijacpmbkpgpanlihcd
URL Officiel https://chromewebstore.google.com/detail/foxtel-click-to-call/agfjggaihnlnaeijacpmbkpgpanlihcd
Description This extension detects phone numbers and add phone icon with link to an external application.
Taille du Fichier 15.66 KB
Nombre d'Installations 276
Version Actuelle 1.0.2
Dernière Mise à Jour 2020-02-04
Date de Publication 2020-01-30
Évaluation 3.86/5 Total 7 Évaluations
Développeur Turfanza Solutions
Type de Paiement free
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "FoxTel Click To Call",
    "short_name": "ClickToCall",
    "description": "This extension detects phone numbers and add phone icon with link to an external application.",
    "version": "1.0.2",
    "options_page": "options.html",
    "browser_action": {
        "default_icon": "img\/icon48.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "content_scripts": [
        {
            "js": [
                "clickToCall.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*\/*"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        "img\/*.png"
    ]
}