enhan(t) Note Taking Power Tool

Bookmark moments, capture screenshots, take notes and annotate during your meetings. Get transcript, meeting metrics and questions.

enhan(t) Note Taking Power Tool là gì?

enhan(t) Note Taking Power Tool là một tiện ích mở rộng Chrome được phát triển bởi Kepler Lab, và tính năng chính của nó là "Bookmark moments, capture screenshots, take notes and annotate during your meetings. Get transcript, meeting metrics and questions.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng enhan(t) Note Taking Power Tool

Tải xuống các tệp mở rộng enhan(t) Note Taking Power Tool dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        enhan(t) Conference Power Tool is an open source Chrome Extension that makes you super productive with the existing video conferencing solutions like Google Meet, Zoom, MS Teams and Jitsi. It enables you to take real time notes, bookmark important moments, and capture screenshots. It also helps you annotate within the opened page using pen, highlight and text tools.

As an efficient assistant, enhan(t) analytics module enables you to extract helpful insights like engagement, sentiment and questions from your online video interactions. It can be used during your sales calls, product walkthrough, interviews and online learning as well.

Features
•	Bookmark moments (to mark an important time in the meeting)
•	Capture screenshots of full page or selected area(to take a timestamped screenshot of the tab)
•	Take notes (to take manual notes or using your voice along with when it was taken)
•	Use voice commands such as "Take screenshot" or "Bookmark Moment" to do the same.
•	Select area on the page to add it as a note.
•	Download meeting data (which contains above mentioned bookmarks, screenshots and notes in .txt, .md and .pdf file along with meeting transcript)
•	Annotate within tab
    o	Draw over
    o	Highlight content
    o	Add text
    o	Change colors of above
    o	Erase/hide annotations
•	Whitelist websites to enable enhan(t) on non-default sites
•	Power mode (along with companion transcription service and analysis CLI)
	o	Engagement metrics
	o	Sentiment metrics
	o	Extract interrogatives (find what questions were asked during the meeting and when)
•   Get host side transcription (via microphone) in the Basic mode and both host and guest side transcription (via tab audio) in the Power mode (with the companion transcription service and analysis CLI)
•	View meeting data in a comprehensive dashboard

To quickly get started with enhan(t), go to https://enhant.readthedocs.io/en/latest/getting_started_in_2_mins.html

Documentation
You can find the detailed documentation at https://enhant.readthedocs.io/

Open Source
enhan(t) is an MIT licensed open source project. You can go to https://github.com/keplerlab/enhant and check out the code. We would welcome your contributions.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên enhan(t) Note Taking Power Tool enhan(t) Note Taking Power Tool
ID fohcdemnkddkfcbheibnjhnpfliemnfg
URL Chính Thức https://chromewebstore.google.com/detail/enhant-note-taking-power/fohcdemnkddkfcbheibnjhnpfliemnfg
Mô tả Bookmark moments, capture screenshots, take notes and annotate during your meetings. Get transcript, meeting metrics and questions.
Kích Thước Tệp 973 KB
Số Lần Cài Đặt 638
Phiên Bản Hiện Tại 0.2.10
Cập Nhật Lần Cuối 2022-04-29
Ngày Phát Hành 2020-09-23
Đánh Giá 4.73/5 Tổng số 11 Đánh Giá
Nhà Phát Triển Kepler Lab
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://enhant.readthedocs.io/en/latest/getting_started_in_2_mins.html
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "enhan(t) Note Taking Power Tool",
    "description": "Bookmark moments, capture screenshots, take notes and annotate during your meetings. Get transcript, meeting metrics and questions.",
    "version": "0.2.10",
    "icons": {
        "16": "static\/images\/logo-16.png",
        "32": "static\/images\/logo-32.png",
        "48": "static\/images\/logo-48.png",
        "128": "static\/images\/logo-128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "static\/images\/logo-16.png",
            "32": "static\/images\/logo-32.png",
            "48": "static\/images\/logo-48.png",
            "128": "static\/images\/logo-128.png"
        }
    },
    "options_page": "options.html",
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "background": {
        "scripts": [
            "config.js",
            "load_settings_in_storage.js",
            "jszip\/fileSaver.js",
            "jszip\/jszip.js",
            "jszip\/jszip-utils.js",
            "jspdf\/jspdf.min.js",
            "fuzzyset\/fuzzyset.js",
            "utilities.js",
            "socket.js",
            "backend.js",
            "local_storage.js",
            "message_handler_bg.js",
            "background.js",
            "loadcontent.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "notifyPageloaded.js"
            ],
            "persistent": true
        }
    ],
    "web_accessible_resources": [
        "static\/css\/jquery-ui.css",
        "config.js",
        "popup.html",
        "iframe2.html"
    ],
    "permissions": [
        "declarativeContent",
        "tabs",
        "tabCapture",
        "storage",
        ""
    ],
    "commands": {
        "take-note": {
            "suggested_key": {
                "default": "Ctrl+Shift+I",
                "mac": "Command+Shift+I"
            },
            "description": "Take Note"
        }
    }
}