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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://nithins.me และคุณลักษณะหลักของมันคือ "Class/Meetings Listener | Notes generator - By Nithin S"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Auto-Notes taker for Online classes
ดาวน์โหลดไฟล์ส่วนขยาย 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" ] } |