Beesy: Record Google Meets

Record Google Meets for FREE locally to your computer

Beesy: Record Google Meets란 무엇입니까?

Beesy: Record Google Meets은(는) The Pira Org에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Record Google Meets for FREE locally to your computer"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Beesy: Record Google Meets 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        ----------------------------------------------------------------------------------------------------

⚠️ Disclaimer: A Beesy user should inform and get consent of other Google Meet members when recording is enabled on their system according to their local laws. Be a sound user and respect others privacy :)

----------------------------------------------------------------------------------------------------

Beesy is FREE for local use, no signup and no cloud dependency at all!

Just install the extension and start recording. Features:
🎥 Record without signing up
⚡ Use shortcuts to start/stop recording. Configure them as per your need
🔊 Option to start video+audio or audio only recordings
🔇 Supports muting audio in recording by muting Google Meet, which is not possible with screen recorders
🎤 Automatically detect active mic when (dis)connecting headphones
⌛ Show time since recording started in extension icon
📥 Recording is downloaded automatically when you leave a meeting
🔀 Show recording in progress and an easy way to switch to the active Meet tab

----------------------------------------------------------------------------------------------------

This extension does NOT track or share user data.
However we use error collection service to improve Beesy and its user's experience.                    

확장 프로그램 기본 정보

이름 Beesy: Record Google Meets Beesy: Record Google Meets
ID eabicnldgjknbifdgmnieblkbnggfnde
공식 URL https://chromewebstore.google.com/detail/beesy-record-google-meets/eabicnldgjknbifdgmnieblkbnggfnde
설명 Record Google Meets for FREE locally to your computer
파일 크기 630 KB
설치 횟수 6,058
현재 버전 0.0.11
최근 업데이트 2023-08-15
출시 날짜 2022-12-26
평점 4.11/5 총 18 개의 평점
개발자 The Pira Org
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://beesy.canny.io/
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Beesy: Record Google Meets",
    "version": "0.0.11",
    "description": "Record Google Meets for FREE locally to your computer",
    "short_name": "Beesy: Record Google Meets",
    "permissions": [
        "downloads",
        "storage",
        "tabCapture",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/meet.google.com\/*"
            ],
            "js": [
                "beesy-content.js"
            ]
        }
    ],
    "icons": {
        "16": "assets\/images\/logo\/16.png",
        "24": "assets\/images\/logo\/24.png",
        "32": "assets\/images\/logo\/32.png",
        "48": "assets\/images\/logo\/48.png",
        "96": "assets\/images\/logo\/96.png",
        "128": "assets\/images\/logo\/128.png"
    },
    "manifest_version": 3,
    "host_permissions": [
        "https:\/\/meet.google.com\/*"
    ],
    "action": {
        "default_title": "Beesy: Record Google Meets",
        "default_popup": "assets\/html\/popup.html",
        "default_icon": "assets\/images\/logo\/128.png"
    },
    "background": {
        "service_worker": "beesy-background.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/**"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "commands": {
        "start-recording": {
            "suggested_key": {
                "default": "Alt+Shift+M",
                "mac": "MacCtrl+Shift+M"
            },
            "description": "Start recording"
        },
        "stop-recording": {
            "suggested_key": {
                "default": "Alt+Shift+X",
                "mac": "MacCtrl+Shift+X"
            },
            "description": "Stop recording"
        }
    }
}