Telephone Number Detection

Automatically highlight phone numbers

Τι είναι το Telephone Number Detection;

Το Telephone Number Detection είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον CTI-Telephony, και η κύρια λειτουργία του είναι "Automatically highlight phone numbers".

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

screenshot
screenshot

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

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

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

                        This extension will update all telephone numbers on a page, with the ability to dial.

Required: Software to receive dial events.

Changes:
========

Version 1.2.5:
--------------
- Fixed: Some european numbers failing detection.
- Fixed: Some numbers length misconstrued if multiple non-numeric found.

Version 1.2.2:
--------------
- Feature: Can disable double forward-slash ('//') notation.

Version 1.2.1:
--------------
- Fixed: Updated method to invoke a call.
- Fixed: Code standardisation.

Version 1.1.9:
--------------
- Fixed: Failure to update page.
- Fixed: Issue where text contained excessive whitespace.
- Fixed: Updated Chrome API.

Version 1.1.8:
--------------
- Added: Skype protocol.

Version 1.1.7:
--------------
- Updated search patterns.
- Options: Can select protocol type to use. (instead of just 'dial:')
- Options: Option to replace existing clickable telephone numbers on web pages.
- Paragraphs with multiple numbers no longer gets ignored.
- Fixed issue where some sites break the phone icon transparency.


Version 1.1.6:
--------------
- Updated number detection.
- Better Google Contacts Support*. (Note: Number invokes Google dialler, icon invokes your preferred dialler.)
- Options panel: Set Min/Max number length.

=======================================================
(*Google Contacts not officially supported.)                    

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

Όνομα Telephone Number Detection Telephone Number Detection
ID oolkfddhhccdciigjigaghblnlkbgjki
Επίσημο URL https://chromewebstore.google.com/detail/telephone-number-detectio/oolkfddhhccdciigjigaghblnlkbgjki
Περιγραφή Automatically highlight phone numbers
Μέγεθος Αρχείου 58.18 KB
Αριθμός Εγκαταστάσεων 48,698
Τρέχουσα Έκδοση 1.2.5
Τελευταία Ενημέρωση 2020-11-16
Ημερομηνία Δημοσίευσης 2017-12-11
Αξιολόγηση 4.11/5 Συνολικά 47 Αξιολογήσεις
Προγραμματιστής CTI-Telephony
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "js\/patch.js",
            "js\/jquery-3.2.1.min.js",
            "js\/Process.js",
            "js\/Background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "js\/patch.js",
                "js\/jquery-3.2.1.min.js",
                "js\/ContentPage.js"
            ],
            "all_frames": true,
            "matches": [
                ""
            ],
            "run_at": "document_end"
        }
    ],
    "name": "Telephone Number Detection",
    "description": "Automatically highlight phone numbers",
    "author": "CTI-Telephony",
    "version": "1.2.5",
    "manifest_version": 2,
    "options_ui": {
        "page": "options\/options.html"
    },
    "permissions": [
        "storage"
    ],
    "browser_action": {
        "default_icon": {
            "19": "images\/Icon19.png",
            "32": "images\/Icon32.png",
            "48": "images\/Icon48.png",
            "128": "images\/Icon128.png"
        },
        "default_title": "Telephone number detection"
    },
    "icons": {
        "19": "images\/Icon19.png",
        "32": "images\/Icon32.png",
        "48": "images\/Icon48.png",
        "128": "images\/Icon128.png"
    }
}