YouTube Timestamps

Shows YouTube timestamps from comments.

Qu'est-ce que YouTube Timestamps ?

YouTube Timestamps est une extension Chrome développée par ris58h, et sa fonction principale est "Shows YouTube timestamps from comments.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension YouTube Timestamps

Téléchargez les fichiers d'extension YouTube Timestamps au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom YouTube Timestamps YouTube Timestamps
ID fjchmkcdmgeimkholkgodkejnikeklmh
URL Officiel https://chromewebstore.google.com/detail/youtube-timestamps/fjchmkcdmgeimkholkgodkejnikeklmh
Description Shows YouTube timestamps from comments.
Taille du Fichier 14.33 KB
Nombre d'Installations 2,794
Version Actuelle 0.9.0
Dernière Mise à Jour 2023-10-02
Date de Publication 2020-02-24
Évaluation 3.93/5 Total 29 Évaluations
Développeur ris58h
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://ris58h.github.io/youtube-timestamps/
URL de la Page d'Aide https://github.com/ris58h/youtube-timestamps
Langues Prises en Charge 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"
    }
}