Bookmark Inside Youtube Videos

Bookmark specific times in a youtube video with a note

Bookmark Inside Youtube Videosคืออะไร?

Bookmark Inside Youtube Videos เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://bookmark.video และคุณลักษณะหลักของมันคือ "Bookmark specific times in a youtube video with a note"

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

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Bookmark Inside Youtube Videos

ดาวน์โหลดไฟล์ส่วนขยาย Bookmark Inside Youtube Videos ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        Take notes attached to specific points in youtube videos.

Do you find yourself referring back to youtube videos looking for specific moments to rewatch?

I had this problem and created a notepad right next to the youtube video where I could take notes while I watched.

When you're ready to take a note the video automatically pauses so you can write down your note, save it and resume playing the video.

★★★ New ★★★

📝Download your notes to your computer

★ Features ★

✔ Start youtube video, open your bookmarks and start writing notes about specific times

✔ Write different notes about the same time

✔ Create multi-line notes

✔ Works at any playback speed

✔ Search bookmarked videos for easy recall

✔ Bookmarked videos open in new tab allowing you to watch multiple videos at once

✔ Click on bookmark time to jump to that point in the video

✔ Edit bookmarks using a popup that hovers over video timeline letting find the exact moment you want to save the new time

✔ Works seamlessly with youtube's own keyboard shortcuts


★ Uses ★

👉 Perfect for bookmarking specific times in long videos

👉 Perfect for bookmarking great movie moments

👉 Perfect for bookmarking lecture highlights

👉 Perfect for bookmarking coding tricks in long coding videos

👉 Perfect for bookmarking instructions in cooking videos

👉 Perfect for bookmarking songs your kids love in children videos

👉 Perfect for bookmarking sport highlights                    

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

ชื่อ Bookmark Inside Youtube Videos Bookmark Inside Youtube Videos
ID lgfilfbcmnjnbocbanhjmhajilkddlnb
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/bookmark-inside-youtube-v/lgfilfbcmnjnbocbanhjmhajilkddlnb
คำอธิบาย Bookmark specific times in a youtube video with a note
ขนาดไฟล์ 77.3 KB
จำนวนการติดตั้ง 89
เวอร์ชันปัจจุบัน 0.0.2
อัปเดตครั้งล่าสุด 2021-10-05
วันที่เผยแพร่ 2021-03-25
คะแนน 4.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา http://bookmark.video
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://bookmark.video/support/
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Bookmark Inside Youtube Videos",
    "description": "Bookmark specific times in a youtube video with a note",
    "version": "0.0.2",
    "browser_action": {
        "default_icon": ".\/images\/logo.png",
        "default_title": "Bookmark.Video",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": ".\/images\/logo.png",
        "48": ".\/images\/logo.png",
        "128": ".\/images\/logo.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                ".\/js\/config.js",
                ".\/js\/jquery.min.js",
                ".\/js\/core.js",
                "js\/simpleNotify.js",
                ".\/js\/content.js"
            ],
            "css": [
                "css\/simpleNotifyStyle.css",
                ".\/css\/content.css"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "background": {
        "scripts": [
            ".\/js\/config.js",
            ".\/js\/jquery.min.js",
            ".\/js\/core.js",
            ".\/js\/background.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "images\/*.gif",
        "images\/*.svg"
    ],
    "permissions": [
        "storage",
        "https:\/\/www.youtube.com\/*"
    ]
}