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 с друзьями, чтобы легко установить расширения 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"
    }
}