Greasy Fork is available in English.
Show full dates on classifier dates
// ==UserScript==
// @name Classifier Page Full Dates
// @namespace https://anotherbubblebath.bandcamp.com/
// @version 1.1
// @description Show full dates on classifier dates
// @author AnotherBubblebath
// @match https://rateyourmusic.com/classifiers/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=rateyourmusic.com
// @grant none
// @license MIT
// ==/UserScript==
(function() {
'use strict';
const rows = document.querySelectorAll('tr > td > span');
for (let row of rows) {
row.innerText = row.title;
}
})();