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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Class/Meetings Listener | Notes generator - By Nithin S"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Auto-Notes taker for Online classes एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 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"
    ]
}