Google Meet Link Hider

Hides title and URL of the Google Meet link from the browser, quite useful while streaming.

Τι είναι το Google Meet Link Hider;

Το Google Meet Link Hider είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον reachdeepman, και η κύρια λειτουργία του είναι "Hides title and URL of the Google Meet link from the browser, quite useful while streaming.".

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

screenshot

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

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

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

                        Hides title and URL of the Google Meet link from the browser so that no meeting link is leaked while sharing the screen. It's quite useful while streaming.

The title bar is automatically masked for all the google meet's link but to mask the URL you have to click the 'Mask URL' button from the popup of the plugin, preferably after joining the meeting. Also, it doesn't affect the URL and title bar of any other website.                    

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

Όνομα Google Meet Link Hider Google Meet Link Hider
ID jlfehbehocoadbdgmdkogjebkkeflmgm
Επίσημο URL https://chrome.google.com/webstore/detail/google-meet-link-hider/jlfehbehocoadbdgmdkogjebkkeflmgm
Περιγραφή Hides title and URL of the Google Meet link from the browser, quite useful while streaming.
Μέγεθος Αρχείου 12.47 KB
Αριθμός Εγκαταστάσεων 26
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2020-09-09
Ημερομηνία Δημοσίευσης 2020-09-09
Προγραμματιστής reachdeepman
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Google Meet Link Hider",
    "version": "1.0",
    "description": "Hides title and URL of the Google Meet link from the browser, quite useful while streaming.",
    "browser_action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.meet.google.com\/*",
                "*:\/\/meet.google.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "permissions": [
        "tabs",
        "*:\/\/*.meet.google.com\/*",
        "*:\/\/meet.google.com\/*",
        "webNavigation",
        "activeTab"
    ],
    "icons": {
        "16": "images\/icon128.png",
        "32": "images\/icon128.png",
        "48": "images\/icon128.png",
        "128": "images\/icon128.png"
    },
    "manifest_version": 2
}