Call form browser

Sends call request with the selected number

Τι είναι το Call form browser;

Το Call form browser είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Jis van Overschot, και η κύρια λειτουργία του είναι "Sends call request with the selected number".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Call form browser

Λήψη αρχείων επέκτασης Call form browser σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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
}