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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } |