Twitch VOD Clock

Show the original live-stream clock time on Twitch VODs

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

Advertisement:

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

Advertisement:

Autor
flocked
Dziennych instalacji
1
Wszystkich instalacji
1
Oceny
0 0 0
Wersja
1.0.3
Utworzono
05-07-2026
Zaktualizowano
05-07-2026
Rozmiar
8,26 KB
Licencja
MIT
Dotyczy

Twitch VOD Clock

Twitch VOD Clock shows the original live-stream clock time while watching Twitch VODs.

It can add timestamps in two places:

  • Next to the Twitch player time, showing the real live time for the current playback position.
  • In the VOD metadata label, for example changing 5 days ago to 5 days ago, 20.02.26 20:11.

Options

The configurable options are near the top of the script:

const LIVE_TIMESTAMP_DATE_FORMAT = "DD.MM.YY HH:mm:ss";
const LABEL_TIMESTAMP_DATE_FORMAT = "{TWITCH}, DD.MM.YY HH:mm";

Player Timestamp

LIVE_TIMESTAMP_DATE_FORMAT controls the timestamp shown next to the video player time.

Set it to null to disable the player timestamp:

const LIVE_TIMESTAMP_DATE_FORMAT = null;

Metadata Label Timestamp

LABEL_TIMESTAMP_DATE_FORMAT controls the timestamp shown in Twitch's VOD metadata label.

Use {TWITCH} to include Twitch's original label text:

const LABEL_TIMESTAMP_DATE_FORMAT = "{TWITCH}, DD.MM.YY HH:mm";

Remove {TWITCH} to replace the label completely:

const LABEL_TIMESTAMP_DATE_FORMAT = "DD.MM.YY HH:mm";

Set it to null to leave Twitch's original metadata label unchanged:

const LABEL_TIMESTAMP_DATE_FORMAT = null;

Date Tokens

Available date tokens:

Token Meaning
YYYY Four-digit year
YY Two-digit year
MM Month
DD Day
HH Hour
mm Minute
ss Second