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.

ستحتاج إلى تثبيت إضافة مثل Stylus لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتتمكن من تثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

(لدي بالفعل مثبت أنماط للمستخدم، دعني أقم بتثبيته!)

Advertisement:

المؤلف
flocked
التثبيت اليومي
1
إجمالي التثبيت
2
التقييمات
0 0 0
الإصدار
1.0.3
تم إنشاؤه
05-07-2026
تم تحديثه
05-07-2026
الحجم
8.26 KB
الترخيص
MIT
ينطبق على

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