Google Meet Auto Join Pro

Join your Google Meet conference / class / meeting at a scheduled time.

Τι είναι το Google Meet Auto Join Pro;

Το Google Meet Auto Join Pro είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://naiem.info, και η κύρια λειτουργία του είναι "Join your Google Meet conference / class / meeting at a scheduled time.".

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

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Google Meet Auto Join Pro

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

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

                        By using this addon you can join Google Meet at a specific / scheduled time. 

Features:
---------------------
1. Create a new slot / Make a schedule for auto-join to Google Meet.
2. Save the slot/meet schedule with Title and short description.
3. Customize icon and color for every slot for a better look in every slot.
4. Set date, and time for joining.
5. Set “From Date” and “To Repeat Date” if you want to join automatically every day at a certain time.
6. Join to scheduled meet date-wise or join continuously weekly/day basis.
7. Automatically join from individual or multiple Google accounts at the same time.
8. Get notified when a tab created to join the meet automatically.
9. Control camera and microphone on the automatically joining moment.
10. Control joining preference e.g. [Present Now] or [Companion Mode] (If needed).
11. Leave / End call at a specific / scheduled time.
12. Set meeting duration and left from the meeting automatically.
13. Leave / End call if the meeting has below a certain number of participants.
14. Access additional features like “Auto accept participant requests” (For the meet host only).
15. The meet host can access automatically join, and accept participant requests at the same time.
16. The meet host can also just use the ‘Accept participant requests’ feature only.
17. Automatically retry/refresh if internet connection makes occurs on the joining moment. You can set minutes a minimum of 6 and up to 15 minutes to automatically retry/refresh.
18. Re-join request options are available if ‘Join request is Denied’ or ‘No respond to the join request’.
19. You can set different times for sending up to 5 messages after joining automatically.
20. View every action log on the options page with warning, success, failure status, and more details.
21. Turn on/off controls later on in the `Options` page view slot section.
22. Generate Javascript code as an alternative to creating a new slot. Use this option anytime or in case creating a new slot option does not work.
23. Get log report to the browser console to see what action was completed, when 24. started, who joined, the meeting closed, and many other logs.
Generate code option is also available for participants and meet host both.

See tutorial step by step at https://github.com/naiemofficial/Google-Meet-Auto-Join-Pro                    

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

Όνομα Google Meet Auto Join Pro Google Meet Auto Join Pro
ID elebhkphkolamljnalppiipakpgonioc
Επίσημο URL https://chromewebstore.google.com/detail/google-meet-auto-join-pro/elebhkphkolamljnalppiipakpgonioc
Περιγραφή Join your Google Meet conference / class / meeting at a scheduled time.
Μέγεθος Αρχείου 7.4 MB
Αριθμός Εγκαταστάσεων 38
Τρέχουσα Έκδοση 1.0.0
Τελευταία Ενημέρωση 2022-04-21
Ημερομηνία Δημοσίευσης 2022-04-20
Προγραμματιστής https://naiem.info
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/naiemofficial/Google-Meet-Auto-Join-Pro
Διεύθυνση URL της Σελίδας Βοήθειας https://naiem.info/contact
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Google Meet Auto Join Pro",
    "description": "Join your Google Meet conference \/ class \/ meeting at a scheduled time.",
    "version": "1.0.0",
    "icons": {
        "16": ".\/images\/icon\/16.png",
        "24": ".\/images\/icon\/32.png",
        "32": ".\/images\/icon\/32.png",
        "48": ".\/images\/icon\/48.png",
        "64": ".\/images\/icon\/64.png",
        "128": ".\/images\/icon\/128.png",
        "256": ".\/images\/icon\/256.png",
        "512": ".\/images\/icon\/512.png",
        "1024": ".\/images\/icon\/1024.png"
    },
    "action": {
        "default_icon": ".\/images\/icon\/32.png",
        "default_popup": "popup.html"
    },
    "options_page": "options.html",
    "background": {
        "service_worker": "worker.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/meet.google.com\/*"
            ],
            "js": [
                ".\/js\/jquery.min.js",
                ".\/js\/meet-page-status.js",
                ".\/js\/execute.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "storage",
        "scripting",
        "unlimitedStorage",
        "alarms",
        "notifications"
    ],
    "host_permissions": [
        "*:\/\/meet.google.com\/*"
    ],
    "content_security_policy": {
        "script-src": "unsafe-eval",
        "object-src": "self"
    }
}