Tubestamps

YouTube timestamps made easy

Tubestampsคืออะไร?

Tubestamps เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://tubestamps.app และคุณลักษณะหลักของมันคือ "YouTube timestamps made easy"

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        Tired of scrolling through the descriptions and comment sections of videos in order to find specific timestamps?

This plugin solves that, and much more. It's essentially a "YouTube Chapters" viewer/controller, but offers a wide variety of features that isn't built into YouTube.

Use cases:
• Watching a long tutorial? Get a quick overview of what is covered and skip to sections that are of interest to you
• Listening to a video game or movie soundtrack? Activate shuffle and let the video play music endlessly
• Looking for that "10 hour version" of a specific song? Activate repeat and play that timestamp
• Looking to share a specific timestamp with a friend? Search for it, click "share" and paste it wherever you wish

Notable features:
• Play a specific timestamp without having to look for it in the description or comment section
• Know which timestamp is currently playing
• Know how much time is left before the next timestamp starts
• Search for a specific timestamp
• Copy a timestamp to clipboard
• Read comments while browsing timestamps of a video (I particularly love this)
• Start a timestamp without having the browser jump back to the top of the entire page
• Click on the current timestamp in the top section and it will scroll to that position in the list
• Pause/play, go to previous/next timestamp
• Enable shuffle (think Spotify shuffle)
• Enable repeat (create your own extended version of a timestamp)
• Switch between light/dark themes
• Interact with the timeline/progress of the timestamp
• Queue up timestamps of choice

Please leave a review if you enjoy this extension, or feel like there's something that could be improved. All feedback is welcome.                    

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

ชื่อ Tubestamps Tubestamps
ID bhaebpnlhphfjffkchdccafakpeimnpd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/tubestamps/bhaebpnlhphfjffkchdccafakpeimnpd
คำอธิบาย YouTube timestamps made easy
ขนาดไฟล์ 108 KB
จำนวนการติดตั้ง 471
เวอร์ชันปัจจุบัน 1.19.4
อัปเดตครั้งล่าสุด 2024-01-28
วันที่เผยแพร่ 2022-01-02
คะแนน 5.00/5 รวมทั้งหมด 12 คะแนน
ผู้พัฒนา https://tubestamps.app
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://tubestamps.app
URL หน้าช่วยเหลือ https://github.com/dhakan/tubestamps
URL หน้านโยบายความเป็นส่วนตัว https://tubestamps.app/privacy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Tubestamps",
    "version": "1.19.4",
    "description": "YouTube timestamps made easy",
    "icons": {
        "16": "icons\/active16.png",
        "32": "icons\/active32.png",
        "48": "icons\/active48.png",
        "128": "icons\/active128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content_scripts\/import-index.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage",
        "scripting"
    ],
    "host_permissions": [
        "*:\/\/*.youtube.com\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "injected.js"
            ],
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ]
        },
        {
            "resources": [
                "chunks\/*-*.js",
                "content_scripts\/index.js"
            ],
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ]
        }
    ],
    "action": {
        "default_icon": {
            "16": "icons\/default16.png",
            "32": "icons\/default32.png",
            "48": "icons\/default48.png",
            "128": "icons\/default128.png"
        },
        "default_title": "Tubestamps",
        "default_popup": "popup\/index.html"
    },
    "background": {
        "service_worker": "service_worker.js",
        "type": "module"
    }
}