HappyMeet - Making Meetings Better

Make Google Meet more engaging.

Cos'è HappyMeet - Making Meetings Better?

HappyMeet - Making Meetings Better è un'estensione di Chrome sviluppata da http://chrislaffra.com, e la sua funzione principale è "Make Google Meet more engaging.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione HappyMeet - Making Meetings Better

Scarica i file di estensione HappyMeet - Making Meetings Better in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome HappyMeet - Making Meetings Better HappyMeet - Making Meetings Better
ID enhlafkhfmhfnfhhjiifnimpfkmicmhd
URL Ufficiale https://chrome.google.com/webstore/detail/happymeet-making-meetings/enhlafkhfmhfnfhhjiifnimpfkmicmhd
Descrizione Make Google Meet more engaging.
Dimensione del File 218 KB
Conteggio Installazioni 29
Versione Corrente 0.30
Ultimo Aggiornamento 2021-07-28
Data di Pubblicazione 2021-04-14
Sviluppatore http://chrislaffra.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://chrislaffra.com/happymeet
URL della Pagina di Aiuto https://chrislaffra.com/happymeet
URL della Pagina della Politica sulla Privacy https://chrislaffra.com/privacy.html
Lingue Supportate 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
}