Show the original live-stream clock time on Twitch VODs
Twitch VOD Clock shows the original live-stream clock time while watching Twitch VODs.
It can add timestamps in two places:
5 days ago to 5 days ago, 20.02.26 20:11.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";
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;
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;
Available date tokens:
| Token | Meaning |
|---|---|
YYYY |
Four-digit year |
YY |
Two-digit year |
MM |
Month |
DD |
Day |
HH |
Hour |
mm |
Minute |
ss |
Second |