ChromeDialer

ChromeDialer

Τι είναι το ChromeDialer;

Το ChromeDialer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Vertace, και η κύρια λειτουργία του είναι "ChromeDialer".

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

screenshot
screenshot
screenshot

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

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

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

                        Make your calls easy by clicking numbers in browser!

Tired of manually dialing numbers? Click a phone number in your browser and your mobile will dial it - it's that easy!

Installation:
1. Install the Extension.
2. Install the Android app by clicking the play store link given in the extension or you can install  directly from playstore by app name ChromeDialer.
3.  Launch the Android app, scan the QR code which is displayed in the extension to link the device and the extension. 
4. You're all set!


How to Use:

Automatically highlights phone number in browser:

    • ChromeDialer Extension converts every phone number in browser to a clickable
button. You can make calls directly to phone numbers available in browser by clicking on the phone number highlighted. 
Call Launch from app:
    • Our Chrome Dialer app launches call when you click highlighted number in browser.

More Info: 

Are you a VIVO user??? 
If the call is not triggered, please do the following steps:

Go to phone's settings, look for 'Battery', click on 'High Background Power Consumption' and enable 'ChromeDialer' app to receive calls.                    

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

Όνομα ChromeDialer ChromeDialer
ID hgoihfcanbhhjdjflhoolhnpfaghbjfk
Επίσημο URL https://chromewebstore.google.com/detail/chromedialer/hgoihfcanbhhjdjflhoolhnpfaghbjfk
Περιγραφή ChromeDialer
Μέγεθος Αρχείου 242 KB
Αριθμός Εγκαταστάσεων 24
Τρέχουσα Έκδοση 1.6
Τελευταία Ενημέρωση 2019-07-15
Ημερομηνία Δημοσίευσης 2019-07-13
Αξιολόγηση 4.92/5 Συνολικά 12 Αξιολογήσεις
Προγραμματιστής Vertace
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ChromeDialer",
    "short_name": "ChromeDialer",
    "version": "1.6",
    "description": "ChromeDialer",
    "icons": {
        "128": "assets\/icons\/Icon-128.png"
    },
    "browser_action": {
        "default_icon": "assets\/icons\/Logo.png",
        "default_title": "ChromeDialer",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "jquery-3.1.0.min.js",
            "assets\/js\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "storage",
        "activeTab",
        "background",
        "notifications",
        "contextMenus",
        "tabs",
        "browsingData"
    ],
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "exclude_globs": [
                "*onedrive*"
            ],
            "exclude_matches": [
                "https:\/\/onedrive.live.com\/*"
            ],
            "js": [
                "jquery-3.1.0.min.js",
                "assets\/contentScript\/phoneNumberHighlighted.js"
            ],
            "all_frames": true
        }
    ]
}