MeetHelper - For Online Meetings

Support extra functions for Online Meetings. Get participant list and More

Τι είναι το MeetHelper - For Online Meetings;

Το MeetHelper - For Online Meetings είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://rightcode.app, και η κύρια λειτουργία του είναι "Support extra functions for Online Meetings. Get participant list and More".

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

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης MeetHelper - For Online Meetings

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

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

                        This extension can help user by adding multiple functions that missing in Online meetings.
1. Get participant list from your Online Meetings ( Web Clients) meetings and download them as CSV for your record keeping ( Works on Google Meet and Zoom Web and Microsoft Teams)

Google Meet Only Functions
1. Auto admit external guests to meeting, without you having to click on that annoying “Admit” button for Google Meet. You can turn it on and off depending on your preference.
2. Mute/Unmute yourself by press of space button on Google Meet.
3. Auto Mute on Join
4. Auto Camera off on Join                    

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

Όνομα MeetHelper - For Online Meetings MeetHelper - For Online Meetings
ID hnmlclbooehbhkjmccmiljdfommnfhak
Επίσημο URL https://chromewebstore.google.com/detail/meethelper-for-online-mee/hnmlclbooehbhkjmccmiljdfommnfhak
Περιγραφή Support extra functions for Online Meetings. Get participant list and More
Μέγεθος Αρχείου 712 KB
Αριθμός Εγκαταστάσεων 108
Τρέχουσα Έκδοση 1.3.11
Τελευταία Ενημέρωση 2020-12-15
Ημερομηνία Δημοσίευσης 2020-10-28
Αξιολόγηση 5.00/5 Συνολικά 4 Αξιολογήσεις
Προγραμματιστής https://rightcode.app
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "MeetHelper - For Online Meetings",
    "version": "1.3.11",
    "description": "Support extra functions for Online Meetings. Get participant list and More",
    "manifest_version": 2,
    "author": "Harish Kumar",
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage"
    ],
    "background": {
        "scripts": [
            "js\/background\/background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/icon_16.png",
            "32": "images\/icon_32.png",
            "48": "images\/icon_48.png",
            "128": "images\/icon_128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.meet.google.com\/*",
                "https:\/\/*.meet.sandbox.google.com\/*",
                "https:\/\/*.zoom.us\/*",
                "https:\/\/*.teams.microsoft.com\/*"
            ],
            "all_frames": true,
            "run_at": "document_idle",
            "js": [
                "js\/external\/jquery.min.js",
                "js\/external\/jquery-ui.min.js",
                "js\/external\/bootstrap.bundle.min.js",
                "js\/external\/jquery.dataTables.js",
                "js\/content\/autoAdmit.js",
                "js\/content\/collectParticipant.js",
                "js\/content\/meetAutoAdmitAlert.js",
                "js\/content\/meetMute.js",
                "js\/content\/autoJoinGoogleMeet.js"
            ],
            "css": [
                "css\/external\/jquery.dataTables.css",
                "css\/external\/bootstrap.min.css",
                "css\/external\/jquery-ui.css"
            ]
        }
    ],
    "icons": {
        "16": "images\/icon_16.png",
        "32": "images\/icon_32.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    },
    "web_accessible_resources": [
        "*.html"
    ],
    "content_security_policy": "script-src 'self' 'sha256-\/13BBW2yQVtpCsBV7JiO23y7pwEFFUobOzefJ27Nltg='; object-src 'self'"
}