Dialpad Extension

Quick launch the Dialpad app and link phone numbers to call via Dialpad

Cos'è Dialpad Extension?

Dialpad Extension è un'estensione di Chrome sviluppata da https://dialpad.com, e la sua funzione principale è "Quick launch the Dialpad app and link phone numbers to call via Dialpad".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Dialpad Extension

Scarica i file di estensione Dialpad Extension in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Call or text anyone with Dialpad directly from your browser by clicking on a phone number.

Gmail users get the ability to click to call directly from the contact card in Gmail when you hover over someone's name. When we detect a phone number tied to a contact's email address we will show the button to quickly call them using Dialpad.

NOTE: Create a list of website exceptions for sites where you don't want to make phone numbers clickable or for sites where you want to allow linking of unformatted phone numbers.

Get the newest features and functionality with the Dialpad Chrome CTI (https://chrome.google.com/webstore/detail/dialpad-chrome-cti/lmecinlocgbbcdgbhkidmeijhdhlngjp).                    

Informazioni di Base sull'Estensione

Nome Dialpad Extension Dialpad Extension
ID mhoeffeimbfbmpccjcodjeeglinbpicp
URL Ufficiale https://chromewebstore.google.com/detail/dialpad-extension/mhoeffeimbfbmpccjcodjeeglinbpicp
Descrizione Quick launch the Dialpad app and link phone numbers to call via Dialpad
Dimensione del File 94.78 KB
Conteggio Installazioni 40,000
Versione Corrente 0.9.23
Ultimo Aggiornamento 2023-09-08
Data di Pubblicazione 2020-05-11
Valutazione 3.13/5 Totale 38 Valutazioni
Sviluppatore https://dialpad.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://dialpad.com
URL della Pagina di Aiuto https://help.dialpad.com
URL della Pagina della Politica sulla Privacy https://www.dialpad.com/legal
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Dialpad Extension",
    "description": "Quick launch the Dialpad app and link phone numbers to call via Dialpad",
    "version": "0.9.23",
    "icons": {
        "16": "images\/icon_16.png",
        "128": "images\/icon_128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/icon_19.png",
            "38": "images\/icon_38.png"
        },
        "default_title": "Launch Dialpad"
    },
    "permissions": [
        "contextMenus",
        "tabs",
        "storage",
        "cookies",
        "*:\/\/dialpad.com\/",
        "*:\/\/www.dialpad.com\/"
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/*.dialpad.com\/*"
        ]
    },
    "background": {
        "scripts": [
            "js\/lib\/jquery-3.1.1.min.js",
            "js\/lib\/underscore.js",
            "js\/constants.js",
            "js\/repo.js",
            "js\/background.js"
        ]
    },
    "options_ui": {
        "page": "html\/options.html",
        "chrome_style": true
    },
    "options_page": "html\/options_legacy.html",
    "content_scripts": [
        {
            "run_at": "document_idle",
            "all_frames": true,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "exclude_matches": [
                "*:\/\/www.switch.co\/*",
                "*:\/\/dialpad.com\/*",
                "*:\/\/fstelephony.appspot.com\/*"
            ],
            "js": [
                "js\/lib\/jquery-3.1.1.min.js",
                "js\/lib\/underscore.js",
                "js\/constants.js",
                "js\/content_script.js"
            ],
            "css": [
                "css\/content-script.css"
            ]
        }
    ]
}