Youtube Live Clock

show present time of the livestream

当前为 2023-06-11 提交的版本,查看 最新版本

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name               Youtube Live Clock
// @name:zh-TW         Youtube Live Clock
// @namespace          https://greasyfork.org/scripts/453367
// @version            1.6.2
// @description        show present time of the livestream
// @description:zh-TW  顯示直播當下的時間
// @author             Derek
// @match              *://www.youtube.com/*
// @grant              none
// ==/UserScript==

//you can choose your ideal date format by changing the FORMAT's value below
const FORMAT = 1
/*
  1: 2022/10/31 06:37:10
  2: 10/31/2022 06:37:10
  3: 31/10/2022 06:37:10
  4: Mon 31/10/2022 06:37:10
  5: Monday 31/10/2022 06:37:10
*/

const $ = (element) => document.querySelector(element)

const abbr = {
  week: { Sun: 'Sunday', Mon: 'Monday', Tue: 'Tuesday', Wed: 'Wednesday', Thu: 'Thursday', Fri: 'Friday', Sat: 'Saturday' },
  month: { Jan: 'January', Feb: 'February', Mar: 'March', Apr: 'April', May: 'May', Jun: 'June', Jul: 'July', Aug: 'August', Sep: 'September', Oct: 'October', Nov: 'November', Dec: 'December' }
}

const twoDigit = (num) => num.toString().padStart(2, '0')

const timeFormat = (time) => {
  const second = time % 60
  const minute = Math.floor((time / 60) % 60)
  const hour = Math.floor(time / 3600)
  return hour > 0 ? `${hour}:${twoDigit(minute)}:${twoDigit(second)}` : `${minute}:${twoDigit(second)}`
}

const dateFormat = (presentTime) => {
  const [week, , day, year, time] = presentTime.toString().split(' ')
  const month = twoDigit(presentTime.getMonth() + 1)
  return {
    1: ` (${year}/${month}/${day} ${time})`,
    2: ` (${month}/${day}/${year} ${time})`,
    3: ` (${day}/${month}/${year} ${time})`,
    4: ` (${week} ${day}/${month}/${year} ${time})`,
    5: ` (${abbr.week[week]} ${day}/${month}/${year} ${time})`
  } [FORMAT]
}

let liveBadge = null
let timeDisplay = null
let progressBar = null

const waitElements = () => {
  return new Promise((resolve) => {
    const observer = new MutationObserver(() => {
      liveBadge = $('.ytp-live-badge')
      timeDisplay = $('.ytp-time-display')
      progressBar = $('.ytp-progress-bar')
      if (liveBadge && timeDisplay && progressBar) {
        observer.disconnect()
        resolve()
      }
    })
    observer.observe(document.body, { attributes: false, childList: true, subtree: true })
  })
}

const getLiveClock = () => {
  let clockElement = $('#present-time')
  if (!clockElement) {
    clockElement = document.createElement('span')
    clockElement.setAttribute('id', 'present-time')
    timeDisplay.childNodes[1].appendChild(clockElement)
  }
  return clockElement
}

const updateLiveTime = () => {
  const liveData = JSON.parse($('.ytd-player-microformat-renderer').textContent).publication
  if (liveData) {
    const progressTime = progressBar.getAttribute('aria-valuenow')
    return liveData[0].endDate ? dateFormat(new Date(Date.parse(liveData[0].startDate) + progressTime * 1000)) : timeFormat(progressTime)
  } else return ''
}

const main = async () => {
  if (window.location.href.includes('/watch?v=')) {
    await waitElements()
    liveBadge.style = 'margin-left: 10px'
    const liveClock = getLiveClock()
    const observer = new MutationObserver(() => { liveClock.textContent = updateLiveTime() })
    observer.observe(progressBar, { attributes: true })
  }
}

document.addEventListener('yt-navigate-finish', main)