Google Meet Link Hider

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

¿Qué es Google Meet Link Hider?

Google Meet Link Hider es una extensión de Chrome desarrollada por reachdeepman, y su función principal es "Hides title and URL of the Google Meet link from the browser, quite useful while streaming.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Google Meet Link Hider

Descarga archivos de extensión Google Meet Link Hider en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Google Meet Link Hider Google Meet Link Hider
ID jlfehbehocoadbdgmdkogjebkkeflmgm
URL Oficial https://chrome.google.com/webstore/detail/google-meet-link-hider/jlfehbehocoadbdgmdkogjebkkeflmgm
Descripción Hides title and URL of the Google Meet link from the browser, quite useful while streaming.
Tamaño del Archivo 12.47 KB
Cantidad de Instalaciones 26
Versión Actual 1.0
Última Actualización 2020-09-09
Fecha de Publicación 2020-09-09
Desarrollador reachdeepman
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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
}