YouTube Time Labels

A Chrome Extension for saving labelled timestamps of YouTube videos

YouTube Time Labelsคืออะไร?

YouTube Time Labels เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Brian Lin Software และคุณลักษณะหลักของมันคือ "A Chrome Extension for saving labelled timestamps of YouTube videos"

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

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube Time Labels

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

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

                        Take notes on YouTube easily with YouTube Time Labels.

Add labels to different times of a video, and skip a video to that time by simply clicking the recorded timestamp on the extension.

Very helpful for long videos where you want to save particular sections (e.g. lecture material, a song from a compilation), or to simply keep track of your favorite videos.

Hotkey to add a timestamp:
Windows: CTRL+SHIFT+Q
MacOS: ⌘+⇧+E

For easy access to the extension, make sure to pin the extension.

Major Features:
- Add and remove videos to the extension, and give videos a custom name.
- Record and delete video timestamps to the extension
- Add custom labels / notes to timestamps.
- Open a video at a particular timestamp from the extension.
- Filter videos by title

This is a personal project I made for fun and learning. If you are interested in the source code, please visit the GitHub page: https://github.com/brianlinUM/youtube-timestamps

All YouTube browsing data (e.g. saved videos and timestamps) are handled by this extension solely for the functioning of this extension - it can not save notes about timestamps without saving the timestamp after all. This data is only stored locally on your device, and never transmitted elsewhere; I do not collect your data.                    

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

ชื่อ YouTube Time Labels YouTube Time Labels
ID nfejcmbipcbnloiekolfklofpdabmmig
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/youtube-time-labels/nfejcmbipcbnloiekolfklofpdabmmig
คำอธิบาย A Chrome Extension for saving labelled timestamps of YouTube videos
ขนาดไฟล์ 120 KB
จำนวนการติดตั้ง 454
เวอร์ชันปัจจุบัน 1.0.0
อัปเดตครั้งล่าสุด 2021-09-09
วันที่เผยแพร่ 2021-09-01
คะแนน 5.00/5 รวมทั้งหมด 8 คะแนน
ผู้พัฒนา Brian Lin Software
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/brianlinUM/youtube-timestamps
URL หน้าช่วยเหลือ https://github.com/brianlinUM/youtube-timestamps/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "YouTube Time Labels",
    "short_name": "YT Time Labels",
    "version": "1.0.0",
    "author": "Brian Lin",
    "description": "A Chrome Extension for saving labelled timestamps of YouTube videos",
    "icons": {
        "16": "\/images\/icon16.png",
        "48": "\/images\/icon48.png",
        "128": "\/images\/icon128.png"
    },
    "permissions": [
        "storage",
        "activeTab"
    ],
    "action": {
        "default_title": "YouTube Time Labels Popup",
        "default_popup": "\/html\/popup.html"
    },
    "content_scripts": [
        {
            "run_at": "document_idle",
            "js": [
                "\/js\/content.bundle.js"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ]
        }
    ],
    "background": {
        "service_worker": ".\/background.js"
    },
    "commands": {
        "add-timestamp": {
            "suggested_key": {
                "default": "Ctrl+Shift+Q",
                "mac": "Command+Shift+E"
            },
            "description": "Record current timestamp"
        }
    }
}