YouTube Absolute DateTime

Reveal when broadcast started

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

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

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

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.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name        YouTube Absolute DateTime
// @namespace   https://i544c.github.com/
// @match       https://www.youtube.com/*
// @grant       none
// @version     1.0.1
// @author      i544c
// @description Reveal when broadcast started
// @description:ja その配信がいつ始まったのかを明らかにする
// ==/UserScript==

(() => {
  'use strict';
  
  const _debug = (...msg) => {
    console.log('[wdbs] ', ...msg);
  };
  
  const queryString = 'span[itemtype="http://schema.org/BroadcastEvent"] meta[itemprop="startDate"]';
  
  const main = async () => {
    _debug('start');
    // ページ内遷移した際にヘッダーが変わらないため、自身のページをfetchする
    const res = await fetch(window.location, { cache: 'no-cache' });
    const rawBody = await res.text();
    const domparser = new DOMParser();
    const body = domparser.parseFromString(rawBody, 'text/html');
    const startDateText = body.querySelector(queryString)?.getAttribute('content');
    if (!startDateText) return;
    
    const startDate = new Date(startDateText);
    _debug(startDate);
    document.querySelector('#info-text #date *:not(#dot)').innerText = startDate.toLocaleString();
  };
  
  document.addEventListener('yt-navigate-finish', main);
})();