Yondo Screen Sharing

This extension allows a user of Yondo to share their screen during a live video call.

Τι είναι το Yondo Screen Sharing;

Το Yondo Screen Sharing είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://yondo.com, και η κύρια λειτουργία του είναι "This extension allows a user of Yondo to share their screen during a live video call.".

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

screenshot
screenshot

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

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

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

                        This extension allows a user of Yondo to share their screen during a live video call and webinars.
Yondo gives you the ability to show any content to your audience. You can choose whether to share your entire screen or only a single window. You are able to perform screen sharing in both the webinar and 1-to-1 live video sessions.
In order to use the screen sharing functionality in Yondo on Google Chrome, you will need to download this extension to enable this functionality. This way Google Chrome will permit sharing your screen.
If your customers also need to share their screens during your online sessions, please let them know they will need this extension and have them install the extension prior to the session to prevent any disruptions during your Yondo Live 1-to-1 and webinars calls.                    

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

Όνομα Yondo Screen Sharing Yondo Screen Sharing
ID knhanngfnlfeflfklpmldgffmhbdbdef
Επίσημο URL https://chromewebstore.google.com/detail/yondo-screen-sharing/knhanngfnlfeflfklpmldgffmhbdbdef
Περιγραφή This extension allows a user of Yondo to share their screen during a live video call.
Μέγεθος Αρχείου 9.48 KB
Αριθμός Εγκαταστάσεων 132
Τρέχουσα Έκδοση 0.3
Τελευταία Ενημέρωση 2022-05-24
Ημερομηνία Δημοσίευσης 2015-12-10
Αξιολόγηση 5.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής https://yondo.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://www.yondo.com
Διεύθυνση URL της Σελίδας Βοήθειας https://support.yondo.com
URL της Σελίδας Πολιτικής Απορρήτου http://legal.yondo.com/privacypolicy.html
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Yondo Screen Sharing",
    "short_name": "Screen Share",
    "author": "Yondo Pty Ltd",
    "version": "0.3",
    "manifest_version": 2,
    "minimum_chrome_version": "34",
    "description": "This extension allows a user of Yondo to share their screen during a live video call.",
    "homepage_url": "http:\/\/www.yondo.com",
    "background": {
        "scripts": [
            "background-script.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "content-script.js"
            ],
            "all_frames": true,
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ]
        }
    ],
    "icons": {
        "16": "logo16.png",
        "48": "logo48.png",
        "128": "logo128.png"
    },
    "permissions": [
        "desktopCapture"
    ],
    "web_accessible_resources": [
        "icon.png"
    ]
}