Highlights for YouTube

View highlights on the video player, that are generated from timestamps found in the description and top comments.

什么是Highlights for YouTube?

Highlights for YouTube是由Ermag开发的Chrome扩展程序,该扩展的主要功能是“View highlights on the video player, that are generated from timestamps found in the description and top comments.”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Highlights for YouTube扩展crx文件

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

扩展使用说明

                        UPDATE: Added controls for navigating between highlights.

See chapters or interesting moments without the need to scroll to the comment/description section. You can toggle the highlights directly from the video player options.

Note: Not all videos will have highlights on them since they are generated from timestamps. Feedback is greatly appreciated!

YouTube is a trademark of Google Inc.                    

扩展基本信息

名称 Highlights for YouTube Highlights for YouTube
ID jahmafmcpgdedfjfknmfkhaiejlfdcfc
官方URL https://chromewebstore.google.com/detail/highlights-for-youtube/jahmafmcpgdedfjfknmfkhaiejlfdcfc
简介 View highlights on the video player, that are generated from timestamps found in the description and top comments.
文件大小 41.6 KB
安装次数 1,797
当前版本 2.8
更新时间 2021-12-21
上架时间 2020-06-07
评分 4.62/5 共13次评分
开发者 Ermag
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Highlights for YouTube",
    "version": "2.8",
    "description": "View highlights on the video player, that are generated from timestamps found in the description and top comments.",
    "icons": {
        "16": "img\/icon-16.png",
        "48": "img\/icon-48.png",
        "128": "img\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "tippy.all.min.js",
                "content.js"
            ],
            "css": [
                "content.css"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "inject.js"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ]
        }
    ]
}