/*
* @title [mastodon]日時を表示
* @description yesterday とか相対表示されてる部分を年月日表示にします。
* @include *
* @license MIT License
* @javascript_url
*/
// 数十秒で相対表示に戻るけど気にしない
[...document.querySelectorAll('time')].forEach(n => {
n.firstChild.textContent = n.parentNode.title || n.title;
});