YouTube Absolute DateTime

Reveal when broadcast started

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

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

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

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

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

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.

(Zateb bir user-style yöneticim var, yükleyeyim!)

// ==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);
})();