Youtube Live Clock

Show present time of the livestream!

当前为 2022-10-25 提交的版本,查看 最新版本

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         Youtube Live Clock
// @namespace    https://greasyfork.org/scripts/453367
// @version      1.4.0
// @description  Show present time of the livestream!
// @author       Derek
// @match        *://www.youtube.com/*
// @grant        none
// @noframes
// ==/UserScript==

let twoDigit = (num) => {
  if (String(num).length === 2) return num
  else return '0' + String(num)
}
let formatTime = (time) => {
  let second = time % 60
  let minute = (time - second) % 3600 / 60
  let hour = (time - minute * 60 - second) / 3600

  if (time < 3600) return `${minute}:${twoDigit(second)}  `
  else return `${hour}:${twoDigit(minute)}:${twoDigit(second)}  `
}
let getClock = () => {
  let liveClock = document.querySelector('.present-time')
  if (!liveClock) {
      let timeDisplay = document.querySelectorAll('.ytp-time-display')
      let clockElement = document.createElement('span')
      clockElement.setAttribute('class', 'present-time')
      timeDisplay[timeDisplay.length - 1].childNodes[1].appendChild(clockElement)
      liveClock = document.querySelector('.present-time')
  }
  return liveClock
}
let updateTime = () => {
  let isLive = JSON.parse(document.querySelector('.ytd-player-microformat-renderer').textContent).publication
  if (isLive) {
      let progressBar = document.querySelectorAll('.ytp-progress-bar')
      let progressTime = progressBar[progressBar.length - 1].getAttribute('aria-valuenow')
      if (isLive[0].endDate) {
          let presentTime = new Date(Date.parse(isLive[0].startDate) + progressTime * 1000)
          let date = (presentTime).toString().split(' ')
          return ` (${date[3]}/${twoDigit(presentTime.getMonth() + 1)}/${date[2]} ${date[4]})  `
      } else return formatTime(progressTime)
  } else return ''
}

let main = () => {
  let liveClock = getClock()
  let progressBar = document.querySelector('.ytp-progress-bar')
  let observer = new MutationObserver(() => { liveClock.textContent = updateTime() })
  observer.observe(progressBar, { attributes: true })
}

document.addEventListener('yt-navigate-finish', () => { if (window.location.href.includes('/watch?v=')) main() })