GitHub actual time

Adds the actual time next to the relative time on GitHub

이 스크립트를 설치하려면 Tampermonkey, Greasemonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey와 같은 확장 프로그램을 설치해야 합니다.

이 스크립트를 설치하려면 Tampermonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey 또는 Userscripts와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 유저 스크립트 관리자 확장 프로그램이 필요합니다.

(이미 유저 스크립트 관리자가 설치되어 있습니다. 설치를 진행합니다!)

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

(이미 유저 스타일 관리자가 설치되어 있습니다. 설치를 진행합니다!)

// ==UserScript==
// @name        GitHub actual time
// @namespace   urn://https://www.georgegillams.co.uk/greasemonkey/github_actual_time
// @include     *github.*
// @exclude     none
// @version     1
// @description:en	Adds the actual time next to the relative time on GitHub
// @grant    		none
// @description   	Adds the actual time next to the relative time on GitHub
// ==/UserScript==

function addTimes() {
  const allElements = document.getElementsByTagName('RELATIVE-TIME');
  for (let i = 0; i < allElements.length; i += 1) {
    const element = allElements[i];
    if (
      element.innerHTML &&
      element.innerHTML.includes &&
      !element.innerHTML.includes(' - ')
    ) {
      element.innerHTML += ` - ${element.title}`;
    }
  }
}

function worker() {
  try {
    addTimes();
  } catch (e) {
    // eslint-disable-next-line no-console
    console.log(e);
  }
}

setInterval(worker, 2000);