YouTube Timestamps

Shows YouTube timestamps from comments.

YouTube Timestamps क्या है?

YouTube Timestamps ris58h द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Shows YouTube timestamps from comments."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में YouTube Timestamps एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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/
सहायता पृष्ठ URL 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"
    }
}