Twitch VOD Clock

Show the original live-stream clock time on Twitch VODs

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

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.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

Advertisement:

Autor
flocked
Dnevne instalacije
1
Ukupnih instalacija
1
Ocjene
0 0 0
Verzija
1.0.3
Stvoreno
05.07.2026.
Ažurirano
05.07.2026.
Size
8,26 KB
Licenza
MIT
Primjenjuje se

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