Google Meet Exit Page

Configure the exit page after ending a Google Meet call.

Τι είναι το Google Meet Exit Page;

Το Google Meet Exit Page είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://clydedsouza.net, και η κύρια λειτουργία του είναι "Configure the exit page after ending a Google Meet call.".

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Configure the exit page that should be visible after a user ends a Google Meet call. A user will have to click the 'Leave call' button from Google Meet to then be redirected to the other page. This is useful if you always need to visit the same page after every meeting, or have a similar requirement. 

The exit page can be configurable from the extensions' Options page. You can also configure if the exit page needs to open in a new tab or the same tab.                    

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

Όνομα Google Meet Exit Page Google Meet Exit Page
ID bjfoplibeabdkfmbanlocafjlbbimgai
Επίσημο URL https://chromewebstore.google.com/detail/google-meet-exit-page/bjfoplibeabdkfmbanlocafjlbbimgai
Περιγραφή Configure the exit page after ending a Google Meet call.
Μέγεθος Αρχείου 10.09 KB
Αριθμός Εγκαταστάσεων 20
Τρέχουσα Έκδοση 0.0.5
Τελευταία Ενημέρωση 2022-07-11
Ημερομηνία Δημοσίευσης 2022-07-05
Προγραμματιστής https://clydedsouza.net
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/ClydeDz/google-meet-exit-page-chrome-extension
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/ClydeDz/google-meet-exit-page-chrome-extension/issues/new/choose
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Google Meet Exit Page",
    "description": "Configure the exit page after ending a Google Meet call.",
    "version": "0.0.5",
    "author": "Clyde D'Souza",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "options_page": "options.html",
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/meet.google.com\/*"
            ],
            "js": [
                "content_scripts.js"
            ]
        }
    ]
}