Greasy Fork is available in English.

Twitch VOD Clock

Show the original live-stream clock time on Twitch VODs

Voor het installeren van scripts heb je een extensie nodig, zoals Tampermonkey, Greasemonkey of Violentmonkey.

Voor het installeren van scripts heb je een extensie nodig, zoals {tampermonkey_link:Tampermonkey}.

Voor het installeren van scripts heb je een extensie nodig, zoals Tampermonkey of Violentmonkey.

Voor het installeren van scripts heb je een extensie nodig, zoals Tampermonkey of Userscripts.

Voor het installeren van scripts heb je een extensie nodig, zoals {tampermonkey_link:Tampermonkey}.

Voor het installeren van scripts heb je een gebruikersscriptbeheerder nodig.

(Ik heb al een user script manager, laat me het downloaden!)

Advertisement:

Voor het installeren van gebruikersstijlen heb je een extensie nodig, zoals {stylus_link:Stylus}.

Voor het installeren van gebruikersstijlen heb je een extensie nodig, zoals {stylus_link:Stylus}.

Voor het installeren van gebruikersstijlen heb je een extensie nodig, zoals {stylus_link:Stylus}.

Voor het installeren van gebruikersstijlen heb je een gebruikersstijlbeheerder nodig.

Voor het installeren van gebruikersstijlen heb je een gebruikersstijlbeheerder nodig.

Voor het installeren van gebruikersstijlen heb je een gebruikersstijlbeheerder nodig.

(Ik heb al een beheerder - laat me doorgaan met de installatie!)

Advertisement:

Maker
flocked
Dagelijks aantal installaties
1
Totaal aantal installaties
2
Beoordelingen
0 0 0
Versie
1.0.3
Gemaakt op
05-07-2026
Bijgewerkt op
05-07-2026
Grootte
8,26 KB
Licentie
MIT
Wordt toegepast op

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