Google Meet Link Hider

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

O que é Google Meet Link Hider?

Google Meet Link Hider é uma extensão do Chrome desenvolvida por reachdeepman, e sua principal característica é "Hides title and URL of the Google Meet link from the browser, quite useful while streaming.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Google Meet Link Hider

Baixe arquivos de extensão Google Meet Link Hider no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Google Meet Link Hider Google Meet Link Hider
ID jlfehbehocoadbdgmdkogjebkkeflmgm
URL Oficial https://chrome.google.com/webstore/detail/google-meet-link-hider/jlfehbehocoadbdgmdkogjebkkeflmgm
Descrição Hides title and URL of the Google Meet link from the browser, quite useful while streaming.
Tamanho do Arquivo 12.47 KB
Contagem de Instalações 26
Versão Atual 1.0
Última Atualização 2020-09-09
Data de Publicação 2020-09-09
Desenvolvedor reachdeepman
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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
}