Call form browser

Sends call request with the selected number

Call form browser क्या है?

Call form browser Jis van Overschot द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Sends call request with the selected number"।

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

screenshot

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

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

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

                        A Chrome extension to call from the browser

How to use:
First make sure the call protocol you want is set. To do this, click on the extension icon and go to options. In the options you can select your preferred call protocol (default is tel).

There are two ways you can use this extension.

The first one is to highlight a phone number and right click on the highlighted 
phone number and select "Call: {phone number}" in the context menu.

The other options is to find a tel link. Just right click on the phone number link 
and the option "Call from link" will appear in the context menu.


Report issues:
If you are having any difficulties with this extension you can create an issue on this page https://github.com/JWOverschot/Call-form-browser-Chrome-Ext./issues                    

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

नाम Call form browser Call form browser
ID pohbhddgjcfniihallmhmialdjcboeof
आधिकारिक URL https://chromewebstore.google.com/detail/call-form-browser/pohbhddgjcfniihallmhmialdjcboeof
विवरण Sends call request with the selected number
फ़ाइल का आकार 16.44 KB
स्थापना संख्या 21
वर्तमान संस्करण 1.0.0
अंतिम अपडेट 2019-11-03
प्रकाशन तिथि 2019-11-02
डेवलपर Jis van Overschot
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/JWOverschot/Call-form-browser-Chrome-Ext.
सहायता पृष्ठ URL https://github.com/JWOverschot/Call-form-browser-Chrome-Ext./issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Call form browser",
    "version": "1.0.0",
    "description": "Sends call request with the selected number",
    "author": "Jis van Overschot",
    "permissions": [
        "contextMenus",
        "storage",
        ""
    ],
    "options_page": "options.html",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "icons": {
        "16": "images\/phone_icon16.png",
        "32": "images\/phone_icon32.png",
        "48": "images\/phone_icon48.png",
        "128": "images\/phone_icon128.png"
    },
    "manifest_version": 2
}