ConX Scheduler

This extension allows the user to schedule conx calls.

Τι είναι το ConX Scheduler;

Το ConX Scheduler είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον ConX by Avistar, και η κύρια λειτουργία του είναι "This extension allows the user to schedule conx calls.".

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        The ConX Scheduler for Google Calendar assists users in scheduling and starting a meeting in Microsoft Google Calendar quickly - just add your name, meeting room number, and security PIN. For scheduling a new ConX meeting or adding a ConX room to a pre-existing meeting, the add-in will pre-populate the meeting invite with your ConX room information. Starting an instant meeting will open the ConX application if it is already installed.

Users now have the ability to switch the language of the Google Calendar extension. The languages are
a. English (Default)
b. Chinese (Simplified)
c. Chinese (Traditional)
d. Dutch
e. French
f. German
g. Spanish

Now there is an ability to add/remove Global Dial-In numbers from the invite. The user has a default number based on language. The user can select all Dial-In numbers that are available. Note, there must be one number selected for the Add-In.

One tap meeting room entry via United States Dial-In number is possible now on the iPhone.                    

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

Όνομα ConX Scheduler ConX Scheduler
ID jkinnkhbbelhniieagjajkabmenpmohl
Επίσημο URL https://chrome.google.com/webstore/detail/conx-scheduler/jkinnkhbbelhniieagjajkabmenpmohl
Περιγραφή This extension allows the user to schedule conx calls.
Μέγεθος Αρχείου 669 KB
Αριθμός Εγκαταστάσεων 47
Τρέχουσα Έκδοση 1.0.20
Τελευταία Ενημέρωση 2020-08-01
Ημερομηνία Δημοσίευσης 2019-08-22
Αξιολόγηση 5.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής ConX by Avistar
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://www.conxme.com/
Διεύθυνση URL της Σελίδας Βοήθειας https://www.conxme.com/site/resources
URL της Σελίδας Πολιτικής Απορρήτου https://www.infocus.com/privacy-policy
Υποστηριζόμενες Γλώσσες de,en,fr,nl,es,zh-CN,zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "version": "1.0.20",
    "default_locale": "en",
    "icons": {
        "16": "img\/conx_logo_16.png",
        "128": "img\/conx_logo_128.png"
    },
    "background": {
        "scripts": [
            "js\/background.js",
            "js\/scheduler.js"
        ]
    },
    "browser_action": {
        "default_icon": "img\/conx_logo_16.png",
        "default_popup": "main.html",
        "default_title": "ConX Scheduler",
        "externally_connectable": {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    },
    "content_scripts": [
        {
            "css": [
                "styles\/content.css"
            ],
            "js": [
                "js\/content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "activeTab",
        "tabs",
        "*:\/\/apis.google.com\/*",
        "http:\/\/calendar.google.com\/calendar\/*",
        "https:\/\/calendar.google.com\/calendar\/*"
    ],
    "web_accessible_resources": [
        "*.png",
        "js\/content.js"
    ],
    "content_security_policy": "script-src 'self' https:\/\/apis.google.com https:\/\/www.gstatic.com\/ https:\/\/*.firebaseio.com https:\/\/calendar.google.com https:\/\/ajax.googleapis.com 'unsafe-eval'; object-src 'self'",
    "oauth2": {
        "client_id": "86348056966-i9iobq4sjdo0er5j34seq3aanqbqostu.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/calendar",
            "https:\/\/www.googleapis.com\/auth\/plus.login",
            "https:\/\/www.googleapis.com\/auth\/userinfo.email"
        ]
    }
}