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.”。
扩展截图
下载Google Meet - Auto Meeting Notes扩展crx文件
下载Google Meet - Auto Meeting Notes扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 |
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'" } |