YouTube Timestamps

Shows YouTube timestamps from comments.

什么是YouTube Timestamps?

YouTube Timestamps是由ris58h开发的Chrome扩展程序,该扩展的主要功能是“Shows YouTube timestamps from comments.”。

扩展截图

screenshot

下载YouTube Timestamps扩展crx文件

下载YouTube Timestamps扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
    }
}