Google Meet - Auto Meeting Notes

A privacy first auto notes taker for Google Meet/Hangouts meetings.

Google Meet - Auto Meeting Notes란 무엇입니까?

Google Meet - Auto Meeting Notes은(는) Helper Functions에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A privacy first auto notes taker for Google Meet/Hangouts meetings."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Google Meet - Auto Meeting Notes 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Google Meets/Hangouts has this really cool live captions feature. This extension saves those captions as meeting notes. No meeting text or voice data is sent to any servers from this extension. All the processing happens on the client( your) end.                    

확장 프로그램 기본 정보

이름 Google Meet - Auto Meeting Notes Google Meet - Auto Meeting Notes
ID dcbhlmadhngmgbnjlegflhpbijcbbdde
공식 URL https://chromewebstore.google.com/detail/google-meet-auto-meeting/dcbhlmadhngmgbnjlegflhpbijcbbdde
설명 A privacy first auto notes taker for Google Meet/Hangouts meetings.
파일 크기 213 KB
설치 횟수 3,770
현재 버전 1.0.7
최근 업데이트 2020-12-04
출시 날짜 2020-06-04
평점 2.14/5 총 7 개의 평점
개발자 Helper Functions
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Google Meet - Auto Meeting Notes",
    "description": "A privacy first auto notes taker for Google Meet\/Hangouts meetings.",
    "author": "Aditya Kumar",
    "version": "1.0.7",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_icon": "images\/icon128.png"
    },
    "permissions": [],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/meet.google.com\/*"
            ],
            "js": [
                "scripts\/jquery.min.js",
                "scripts\/jquery-ui.js",
                "scripts\/extension.js"
            ],
            "css": [
                "notes.css"
            ]
        }
    ],
    "manifest_version": 2,
    "web_accessible_resources": [
        "scripts\/script.js",
        "scripts\/script_post.js",
        "scripts\/print.jpg",
        "scripts\/print.css",
        "scripts\/edit.png"
    ],
    "content_security_policy": "script-src 'self'  https:\/\/code.jquery.com; object-src 'self'"
}