YouTube Timestamps

Shows YouTube timestamps from comments.

ما هو YouTube Timestamps؟

YouTube Timestamps هو إضافة Chrome تم تطويرها بواسطة ris58h، والميزة الرئيسية لها هي "Shows YouTube timestamps from comments.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة YouTube Timestamps

قم بتنزيل ملفات الامتداد YouTube Timestamps بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        It adds timestamps right on YouTube video timeline. Hover over them to preview corresponding comments.

The extension shows timestamps that YouTube users leave in comments. It shows timestamps from the top 100 comments.
If YouTube video doesn't have comments with timestamps or the timestamps are not in the top 100 comments the extension doesn't show anything. 
Timestamps are placed right on YouTube's video timeline. Hover a timestamp on the timeline to preview the corresponding comment.

Key features:
- Shows timestamps from YouTube comments on timeline.
- Works in Fullscreen and Theater modes.
- Works for embedded videos.
- Dark theme support.
- Open Source https://github.com/ris58h/youtube-timestamps

NOTE: To scroll a long comment preview scroll on the timestamp you are hovering over.

LIMITATIONS: Only timestamps from the first 100 comments are shown.                    

معلومات أساسية عن التمديد

الاسم YouTube Timestamps YouTube Timestamps
ID fjchmkcdmgeimkholkgodkejnikeklmh
عنوان URL الرسمي https://chromewebstore.google.com/detail/youtube-timestamps/fjchmkcdmgeimkholkgodkejnikeklmh
الوصف Shows YouTube timestamps from comments.
حجم الملف 14.33 KB
عدد التثبيتات 2,794
النسخة الحالية 0.9.0
آخر تحديث 2023-10-02
تاريخ النشر 2020-02-24
تقييم 3.93/5 مجموع تقييمات 29
المطور ris58h
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://ris58h.github.io/youtube-timestamps/
عنوان صفحة المساعدة https://github.com/ris58h/youtube-timestamps
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Timestamps",
    "description": "Shows YouTube timestamps from comments.",
    "version": "0.9.0",
    "applications": {
        "gecko": {
            "id": "youtube-timestamps@ris58h"
        }
    },
    "permissions": [
        "https:\/\/www.youtube.com\/*",
        "webRequest",
        "webRequestBlocking"
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*",
                "https:\/\/www.youtube-nocookie.com\/embed\/*"
            ],
            "all_frames": true,
            "js": [
                "content\/content.js"
            ],
            "css": [
                "content\/content.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "background\/youtubei.js"
    ],
    "background": {
        "page": "background\/background.html"
    }
}