Auto-Notes taker for Online classes
Class/Meetings Listener | Notes generator - By Nithin S
什么是Auto-Notes taker for Online classes?
Auto-Notes taker for Online classes是由https://nithins.me开发的Chrome扩展程序,该扩展的主要功能是“Class/Meetings Listener | Notes generator - By Nithin S”。
扩展截图
下载Auto-Notes taker for Online classes扩展crx文件
下载Auto-Notes taker for Online classes扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
A Chrome Extension which can listen to your online classes/meetings and can generate your class notes from the content discussed in the meeting/class Mails you the notes after every class. Generates short and important points using AI for a quick glance of the topic Also records the entire transcription of the audio in the meeting/class. After the class has ended or the recording has stopped, you'll get an instant email with all the content as described above. Make sure to mark mails from [email protected] as Important so that you won't miss out any mails from the bot. Super Light weight extension consuming <1MB of your RAM Currently supports the following platforms : 1. Google Meet 2. Microsoft Teams 3. Zoom Web Free to use, no charges anywhere [ Incase you are using MS Teams bot or Google Meet bot, those bots can automatically switch on/off the recording as they enter/exit classes respectively ] MS Teams bot : https://link.nithins.me/bot Google Meet bot : https://link.nithins.me/gmbot
扩展基本信息
名称 | Auto-Notes taker for Online classes |
ID | hflngkajjgpnnedmkbncjngebjohefoc |
官方URL | https://chromewebstore.google.com/detail/auto-notes-taker-for-onli/hflngkajjgpnnedmkbncjngebjohefoc |
简介 | Class/Meetings Listener | Notes generator - By Nithin S |
文件大小 | 119 KB |
安装次数 | 2,376 |
当前版本 | 1.2.1 |
更新时间 | 2021-01-20 |
上架时间 | 2020-10-30 |
评分 | 3.00/5 共2次评分 |
开发者 | https://nithins.me |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://nithins/me |
帮助页面URL | https://nithins/me |
隐私政策页面URL | https://nithins.me/nbot/privacyPolicy.html |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Auto-Notes taker for Online classes", "version": "1.2.1", "description": "Class\/Meetings Listener | Notes generator - By Nithin S", "icons": { "128": "icon.png" }, "browser_action": { "default_icon": "icon.png", "default_title": "N-Notes", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/teams.microsoft.com\/*", "https:\/\/meet.google.com\/*", "https:\/\/*.zoom.us\/*" ], "js": [ "jquery-3.5.1.js", "contentscriptnithSummary.js" ] } ], "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "storage", "notifications" ] } |