HappyMeet - Making Meetings Better

Make Google Meet more engaging.

HappyMeet - Making Meetings Better란 무엇입니까?

HappyMeet - Making Meetings Better은(는) http://chrislaffra.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Make Google Meet more engaging."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

HappyMeet - Making Meetings Better 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 HappyMeet - Making Meetings Better HappyMeet - Making Meetings Better
ID enhlafkhfmhfnfhhjiifnimpfkmicmhd
공식 URL https://chrome.google.com/webstore/detail/happymeet-making-meetings/enhlafkhfmhfnfhhjiifnimpfkmicmhd
설명 Make Google Meet more engaging.
파일 크기 218 KB
설치 횟수 29
현재 버전 0.30
최근 업데이트 2021-07-28
출시 날짜 2021-04-14
개발자 http://chrislaffra.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://chrislaffra.com/happymeet
도움말 페이지 URL https://chrislaffra.com/happymeet
개인정보 보호 정책 페이지 URL https://chrislaffra.com/privacy.html
지원되는 언어 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
}