AI-powered Notes on Videos - Video Notebook

Video notetaking powered by OpenAI API on YouTube, Google Meet, Udemy & more!

AI-powered Notes on Videos - Video Notebookคืออะไร?

AI-powered Notes on Videos - Video Notebook เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://videonotebook.com และคุณลักษณะหลักของมันคือ "Video notetaking powered by OpenAI API on YouTube, Google Meet, Udemy & more!"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย AI-powered Notes on Videos - Video Notebook

ดาวน์โหลดไฟล์ส่วนขยาย AI-powered Notes on Videos - Video Notebook ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        How our extension powered by OpenAI API works
▸ Take timestamped screenshots and notes on videos and meetings. 
▸ Add bookmarks inside the video or meeting recording.
▸ Automatically generate AI notes whenever you take a screenshot or add a bookmark. The AI note summarizes what the speaker said at that time. 
▸ Enable the AI Notes setting to automatically generate notes whenever anything important is said.
▸ Enable the AI Slides setting to automatically take screenshots of presenter’s slides during meetings and videos, using computer vision AI.
▸ Click on a bookmark's or note’s timestamp to go back to a point in the video or the meeting recording when you took it.
▸ Organize your videos into notebooks.
▸ Search across your notes and transcripts (we automatically retrieve transcripts from YouTube, Google Meet, Udemy, and Coursera).
▸ Review your notes in our web app or export them to PDF or markdown. 
▸ Share videos along with your screenshots and notes with your friends.

Notetaking on all video platforms finally in one place! Now powered by OpenAI API.

🚀 Works with
▸ Video platforms: YouTube, Vimeo
▸ Online courses: Udemy, Coursera
▸ Google Meet

Video Notebook AI note-taker helps you remember more from your videos and meetings. Our bookmarking app can become your personal knowledge center for all your screenshots, slides, text notes, and transcripts!

It’s made for
📈 Those that learn from videos and courses.
💼 Those that attend virtual meetings.
🎓 K-12 and university students.
And is available 100% for free!

Learn more at www.videonotebook.com.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ AI-powered Notes on Videos - Video Notebook AI-powered Notes on Videos - Video Notebook
ID hbklahkfbghjgbclbfcnhpfmajkagnci
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/ai-powered-notes-on-video/hbklahkfbghjgbclbfcnhpfmajkagnci
คำอธิบาย Video notetaking powered by OpenAI API on YouTube, Google Meet, Udemy & more!
ขนาดไฟล์ 9.79 MB
จำนวนการติดตั้ง 122,100
เวอร์ชันปัจจุบัน 0.3.42
อัปเดตครั้งล่าสุด 2024-02-23
วันที่เผยแพร่ 2021-11-18
คะแนน 3.80/5 รวมทั้งหมด 108 คะแนน
ผู้พัฒนา https://videonotebook.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://videonotebook.com/
URL หน้าช่วยเหลือ https://videonotebook.com/support
URL หน้านโยบายความเป็นส่วนตัว https://www.videonotebook.com/privacy-policy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AI-powered Notes on Videos - Video Notebook",
    "short_name": "Video Notebook",
    "version": "0.3.42",
    "description": "Video notetaking powered by OpenAI API on YouTube, Google Meet, Udemy & more!",
    "icons": {
        "48": "icons\/tray_default.png"
    },
    "browser_action": {
        "default_title": "VideoNotebook.com"
    },
    "commands": {
        "add-screenshot-note": {
            "suggested_key": {
                "default": "Alt+S"
            },
            "description": "Add a screenshot"
        },
        "add-text-note": {
            "suggested_key": {
                "default": "Alt+Z"
            },
            "description": "Add a text note"
        },
        "add-text-note-np": {
            "suggested_key": {
                "default": "Alt+X"
            },
            "description": "Add a text note without pausing a video"
        },
        "add-marker-note": {
            "suggested_key": {
                "default": "Alt+A"
            },
            "description": "Add a bookmark"
        }
    },
    "background": {
        "scripts": [
            ".\/vendor\/js\/ga.js",
            ".\/vendor\/js\/jquery.js",
            "background.bundle.js"
        ]
    },
    "content_scripts": [
        {
            "exclude_matches": [
                "*:\/\/videonotebook.com\/*",
                "*:\/\/meet.google.com\/*"
            ],
            "exclude_globs": [
                "*:\/\/*.videonotebook.com\/notebooks\/*"
            ],
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "main-content.bundle.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "js": [
                "google-meet-content.bundle.js"
            ],
            "all_frames": false,
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/localhost\/*",
                "https:\/\/*.videonotebook.com\/*",
                "https:\/\/*.youtube.com\/embed\/*"
            ],
            "all_frames": true,
            "js": [
                "embed-page.bundle.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "tabs",
        "storage",
        "https:\/\/www.google-analytics.com\/",
        "",
        "cookies",
        "*:\/\/*.videonotebook.com\/*",
        "webRequest",
        "webNavigation"
    ],
    "web_accessible_resources": [
        "vendor\/css\/*",
        "css\/*",
        "icons\/*",
        "assets\/fonts\/*"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/www.google-analytics.com\/ https:\/\/apis.google.com; object-src 'self'",
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsCoUejKdbokDJqUvLVh8hGZyH00OdjjJdquxz\/qAfhfDurWpEho2lkY5+t5n3LnDl8C3v8ZUnAm+te01pWmp7Vclg8a8n5IzZf4LLiCbXno+HEmDDtUCgmgL\/MviiZn6exYoFgpZmviQlZ2RCypSIbnV2DKUr0K8Y17OtTMxxpVm7mW7d38ICdLjECluS3yUg\/xl5ZAf82CTjt\/4GT1ciLk4xOMdOT62quXHP7t7VepNaELov1UPPbe0ttpVW3Zdem0jxQn\/Kb+\/BYw+wVOYgp\/5bQHWUBQElJdT2Q6lxPUldhTfUfTnGDUExMes14c5Eq+Cv\/xskZTOyZIn5Vh8xwIDAQAB",
    "externally_connectable": {
        "matches": [
            "*:\/\/*.videonotebook.com\/*",
            "http:\/\/localhost:9000\/*",
            "https:\/\/localhost:9000\/*"
        ]
    }
}