Twitch VOD Clock

Show the original live-stream clock time on Twitch VODs

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

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

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

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

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

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.

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

Advertisement:

Δημιουργός
flocked
Ημερήσιες εγκαταστάσεις
1
Σύνολο εγκαταστάσεων
1
Βαθμολογίες
0 0 0
Έκδοση
1.0.3
Δημιουργήθηκε την
05/07/2026
Ενημερώθηκε την
05/07/2026
Μέγεθος
8 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