HappyMeet - Making Meetings Better

Make Google Meet more engaging.

What is HappyMeet - Making Meetings Better?

HappyMeet - Making Meetings Better is a Chrome extension developed by http://chrislaffra.com, and its main feature is "Make Google Meet more engaging.".

Extension Screenshots

screenshot
screenshot
screenshot

Download HappyMeet - Making Meetings Better Extension CRX File

Download HappyMeet - Making Meetings Better extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name HappyMeet - Making Meetings Better HappyMeet - Making Meetings Better
ID enhlafkhfmhfnfhhjiifnimpfkmicmhd
Official URL https://chrome.google.com/webstore/detail/happymeet-making-meetings/enhlafkhfmhfnfhhjiifnimpfkmicmhd
Description Make Google Meet more engaging.
File Size 218 KB
Installation Count 29
Current Version 0.30
Last Updated 2021-07-28
Publish Date 2021-04-14
Developer http://chrislaffra.com
Email [email protected]
Payment Type free
Extension Website https://chrislaffra.com/happymeet
Help Page URL https://chrislaffra.com/happymeet
Privacy Policy Page URL https://chrislaffra.com/privacy.html
Supported Languages 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
}