Dialpad Extension

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

Dialpad Extension क्या है?

Dialpad Extension https://dialpad.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Quick launch the Dialpad app and link phone numbers to call via Dialpad"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Dialpad Extension एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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).                    

एक्सटेंशन की मूल जानकारी

नाम Dialpad Extension Dialpad Extension
ID mhoeffeimbfbmpccjcodjeeglinbpicp
आधिकारिक URL https://chromewebstore.google.com/detail/dialpad-extension/mhoeffeimbfbmpccjcodjeeglinbpicp
विवरण Quick launch the Dialpad app and link phone numbers to call via Dialpad
फ़ाइल का आकार 94.78 KB
स्थापना संख्या 40,000
वर्तमान संस्करण 0.9.23
अंतिम अपडेट 2023-09-08
प्रकाशन तिथि 2020-05-11
रेटिंग 3.13/5 कुल 38 रेटिंग्स
डेवलपर https://dialpad.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://dialpad.com
सहायता पृष्ठ URL https://help.dialpad.com
गोपनीयता नीति पृष्ठ URL https://www.dialpad.com/legal
समर्थित भाषाएँ 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"
            ]
        }
    ]
}