telify

Recognizes phone numbers on web pages and converts them into clickable links

Τι είναι το telify;

Το telify είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον d3v.one, και η κύρια λειτουργία του είναι "Recognizes phone numbers on web pages and converts them into clickable links".

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        This extension recognizes phone numbers on web pages and converts them into clickable links. This works with many CTI applications, SIP clients, Skype, snom phones, and Android phones when sync is enabled for the Chrome browser on both devices. In general, any telephony software, device or interface which can be controlled by using an URL, will most likely enable you to call a phone number directly from your browser.

This is done by passing the phone number to the configured system protocol handler and from there to the application which registered this protocol handler. Just like an URL starting with “http”, a link can also start with other protocol specifiers, e.g. “tel”, “sip” or “skype”. Applications like Skype or Bria Solo register an appropriate protocol handler in the system upon installation. So after installing Skype and using an URL starting with the protocol specifier “skype”, a phone number can be called directly from the browser.

In newer versions of the Chrome browser, links starting with the tel protocol are handled inside the application. This has the advantage that you can use your Android phone to call phone numbers from your Desktop computer. To use this, sync must be enabled for both devices in the Chrome browser.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα telify telify
ID cioaocgapbjhdiodcabjlnihjfbopafb
Επίσημο URL https://chromewebstore.google.com/detail/telify/cioaocgapbjhdiodcabjlnihjfbopafb
Περιγραφή Recognizes phone numbers on web pages and converts them into clickable links
Μέγεθος Αρχείου 435 KB
Αριθμός Εγκαταστάσεων 1,996
Τρέχουσα Έκδοση 1.0.1.14
Τελευταία Ενημέρωση 2020-03-05
Ημερομηνία Δημοσίευσης 2020-03-04
Αξιολόγηση 4.36/5 Συνολικά 11 Αξιολογήσεις
Προγραμματιστής d3v.one
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://d3v.one/telify/
Διεύθυνση URL της Σελίδας Βοήθειας https://d3v.one/telify/
URL της Σελίδας Πολιτικής Απορρήτου https://d3v.one/privacy-policy-browser-extensions
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "telify",
    "short_name": "telify",
    "version": "1.0.1.14",
    "description": "Recognizes phone numbers on web pages and converts them into clickable links",
    "author": "Michael Koch",
    "homepage_url": "https:\/\/d3v.one\/telify\/",
    "icons": {
        "16": "images\/icon16_s.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true,
        "open_in_tab": false
    },
    "background": {
        "scripts": [
            "pref.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "jquery\/jquery-ui.css",
                "jquery\/jquery.contextMenu.css",
                "contextMenuFlags.css",
                "message.css",
                "edit.css"
            ],
            "js": [
                "jquery\/jquery-3.1.0.min.js",
                "jquery\/jquery-ui.min.js",
                "jquery\/jquery.contextMenu.min.js",
                "helper.js",
                "jshashtable.js",
                "country_data.js",
                "pref.js",
                "message.js",
                "util.js",
                "flag.js",
                "edit.js",
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": {
            "19": "images\/icon19_s.png",
            "38": "images\/icon38_s.png"
        },
        "default_title": "Telify",
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        "flag\/*.png",
        "images\/*.png",
        "jquery\/images\/*.png"
    ]
}