Byphone Number Linkify

An extension to turn phone numbers on pages into click to dial links.

Byphone Number Linkify क्या है?

Byphone Number Linkify Voxbit Dev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "An extension to turn phone numbers on pages into click to dial links."।

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

screenshot

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

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

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

                        Byphone Number Linkify is a handy chrome extension designed to make it easier to use click to dial with the Byphone Hosted PBX solution. It will auto scan web pages you visit to make it easier to dial any phone numbers on page. You can also highlight a body of text, right click and select "Click to Dial" to extract phone numbers.                    

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

नाम Byphone Number Linkify Byphone Number Linkify
ID lehkpanjomjggobemfabmiodmkbcnlnb
आधिकारिक URL https://chromewebstore.google.com/detail/byphone-number-linkify/lehkpanjomjggobemfabmiodmkbcnlnb
विवरण An extension to turn phone numbers on pages into click to dial links.
फ़ाइल का आकार 281 KB
स्थापना संख्या 39
वर्तमान संस्करण 0.0.4
अंतिम अपडेट 2018-05-30
प्रकाशन तिथि 2018-05-30
डेवलपर Voxbit Dev
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://byphone.co.uk
सहायता पृष्ठ URL https://documentation.byphone.co.uk
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Byphone Number Linkify",
    "version": "0.0.4",
    "manifest_version": 2,
    "description": "An extension to turn phone numbers on pages into click to dial links.",
    "short_name": "Click To Dial on Byphone",
    "homepage_url": "http:\/\/byphone.co.uk",
    "permissions": [
        "storage",
        "contextMenus",
        "tabs",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "scripts": [
            "js\/shared.js",
            "js\/background.js"
        ],
        "persistent": true
    },
    "default_locale": "en",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/shared.js",
                "js\/libphonenumber-js.min.js",
                "js\/content.js"
            ],
            "css": [
                "css\/style.css"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "html\/popup.html",
        "default_icon": {
            "16": "icons\/icon16.png",
            "48": "icons\/icon48.png",
            "128": "icons\/icon128.png"
        }
    }
}