RHTRH – Raise Hand To Raise Hand

Raise your hand on Google Meet by raising your hand in real life

RHTRH – Raise Hand To Raise Hand란 무엇입니까?

RHTRH – Raise Hand To Raise Hand은(는) Adflow에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Raise your hand on Google Meet by raising your hand in real life"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

RHTRH – Raise Hand To Raise Hand 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        RHTRH is an open source Chromium extension that raises your (virtual) hand on Google Meet when you raise your (physical) hand. Our AI-powered algorithm is optimised to run smoothly on all devices.

RHTRH works with on all Chromium browsers for any organisation using Google Workspace (it is compatible with Google Meet's "raise hand" functionality only – for now at least 🤫)

- 🔒 Privacy first: All the computing happens on the device itself. No image ever leaves your laptop!
- 🐝 All chromium browsers supported
- 🙋‍♀️ Two modes (choose your preferred one): 
(i) We all got used to keeping our hands up to speak in school. 
(ii) Some of us prefer to keep their hands on their keyboards while waiting for their turn to speak.
- 👨‍💻 Completely open source: Contributions and PRs are more than welcome on our Github page

Hope you like it! Let us know your feedback ⭐️.                    

확장 프로그램 기본 정보

이름 RHTRH – Raise Hand To Raise Hand RHTRH – Raise Hand To Raise Hand
ID eklmnoflmkgilkjdiocjonfcpdkacplj
공식 URL https://chromewebstore.google.com/detail/rhtrh-%E2%80%93-raise-hand-to-rai/eklmnoflmkgilkjdiocjonfcpdkacplj
설명 Raise your hand on Google Meet by raising your hand in real life
파일 크기 195 KB
설치 횟수 3,599
현재 버전 0.3.1
최근 업데이트 2021-01-07
출시 날짜 2021-01-06
평점 4.67/5 총 3 개의 평점
개발자 Adflow
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://signofactory.it
도움말 페이지 URL https://signofactory.it
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "RHTRH \u2013 Raise Hand To Raise Hand",
    "description": "Raise your hand on Google Meet by raising your hand in real life",
    "version": "0.3.1",
    "permissions": [
        "declarativeContent"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "js\/bundle.js",
        "images\/"
    ],
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "*:\/\/meet.google.com\/*"
            ],
            "exclude_matches": [
                "*:\/\/meet.google.com\/"
            ],
            "js": [
                "js\/main.js"
            ],
            "all_frames": false
        }
    ],
    "page_action": {
        "default_popup": "popup\/popup.html",
        "default_icon": {
            "16": "images\/icon16.png",
            "32": "images\/icon32.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        }
    },
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "manifest_version": 2
}