HappyMeet - Making Meetings Better
Make Google Meet more engaging.
O que é HappyMeet - Making Meetings Better?
HappyMeet - Making Meetings Better é uma extensão do Chrome desenvolvida por http://chrislaffra.com, e sua principal característica é "Make Google Meet more engaging.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão HappyMeet - Making Meetings Better
Baixe arquivos de extensão HappyMeet - Making Meetings Better 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
Send emojis to other attendees to show your engagement or to do quick polls. HappyMeet follows the vision outlined in C4E, the book on how to communicate better as engineers. More improvements will be added in the future. See chrislaffra.com/c4e. HappyMeet is Open Source. Check out the source here: https://github.com/laffra/happymeet.
Informações Básicas da Extensão
Nome | |
ID | enhlafkhfmhfnfhhjiifnimpfkmicmhd |
URL Oficial | https://chrome.google.com/webstore/detail/happymeet-making-meetings/enhlafkhfmhfnfhhjiifnimpfkmicmhd |
Descrição | Make Google Meet more engaging. |
Tamanho do Arquivo | 218 KB |
Contagem de Instalações | 29 |
Versão Atual | 0.30 |
Última Atualização | 2021-07-28 |
Data de Publicação | 2021-04-14 |
Desenvolvedor | http://chrislaffra.com |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://chrislaffra.com/happymeet |
URL da Página de Ajuda | https://chrislaffra.com/happymeet |
URL da Página de Política de Privacidade | https://chrislaffra.com/privacy.html |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "HappyMeet - Making Meetings Better", "short_name": "happymeet", "description": "Make Google Meet more engaging.", "version": "0.30", "permissions": [], "author": "Chris Laffra - [email protected]", "content_scripts": [ { "matches": [ "https:\/\/meet.google.com\/*", "https:\/\/chrislaffra.com\/*" ], "css": [ "jquery\/jquery-ui.min.css", "jquery\/jquery-ui.structure.min.css", "jquery\/jquery-ui.theme.min.css", "happymeet.css" ], "js": [ "jquery\/jquery.js", "jquery\/jquery-ui.min.js", "require.js", "util.js", "emojis.js", "happymeet.js" ], "all_frames": true } ], "background": { "scripts": [ "jquery\/jquery.js", "jquery\/jquery-ui.min.js", "require.js", "util.js", "background.js" ] }, "page_action": { "default_icon": { "38": "happymeet-logo.png" }, "default_title": "HappyMeet" }, "manifest_version": 2 } |