Google Meet Presenter Mode

Choose whether you can be muted while presenting in Google Meet

O que é Google Meet Presenter Mode?

Google Meet Presenter Mode é uma extensão do Chrome desenvolvida por Petri Koivula, e sua principal característica é "Choose whether you can be muted while presenting in Google Meet".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Google Meet Presenter Mode

Baixe arquivos de extensão Google Meet Presenter Mode 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

                        Gives you a choice of whether other Google Meet users can mute you or not.

Intended for use by teachers and other presenters who might get griefed by anonymous users muting them in Meet.                    

Informações Básicas da Extensão

Nome Google Meet Presenter Mode Google Meet Presenter Mode
ID fiidmaaecmjkhpfinfkdcabglcmghnaa
URL Oficial https://chromewebstore.google.com/detail/google-meet-presenter-mod/fiidmaaecmjkhpfinfkdcabglcmghnaa
Descrição Choose whether you can be muted while presenting in Google Meet
Tamanho do Arquivo 6.03 KB
Contagem de Instalações 10,000
Versão Atual 0.0.2
Última Atualização 2020-04-14
Data de Publicação 2020-04-14
Classificação 4.29/5 Total de 7 Avaliações
Desenvolvedor Petri Koivula
Tipo de Pagamento free
Site da Extensão https://gitlab.com/PKJedi/meet-presenter
URL da Página de Ajuda https://gitlab.com/PKJedi/meet-presenter/-/issues
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Google Meet Presenter Mode",
    "short_name": "Presenter Mode",
    "version": "0.0.2",
    "description": "Choose whether you can be muted while presenting in Google Meet",
    "page_action": {
        "default_icon": {
            "32": "assets\/icon_off_32.png"
        },
        "default_title": "Disabled"
    },
    "background": {
        "scripts": [
            "src\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "js": [
                "src\/content.js"
            ]
        }
    ],
    "permissions": [
        "declarativeContent",
        "https:\/\/meet.google.com\/*"
    ]
}