GitHub relative datetime

Set relative-time.datetime as its title

Stan na 31-07-2026. Zobacz najnowsza wersja.

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

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

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    		GitHub relative datetime
// @namespace 	dyama.net
// @version  		1
// @description	Set relative-time.datetime as its title
// @match   		https://github.com/*
// @match    		https://gist.github.com/*
// @grant    		none
// @license     WTFPL
// ==/UserScript==

const observer = new MutationObserver(ms => ms.forEach(m => {
  if (m.attributeName == 'datetime' && m.target.tagName == 'RELATIVE-TIME')
    m.target.title = m.target.attributes.datetime.value;
}));

observer.observe(document.body, {attributes: true, subtree: true});