GameFAQs - date reformatter

Changes the format of the timestamp in the message boards

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

// ==UserScript==
// @name         GameFAQs - date reformatter
// @version      0.3
// @namespace    gamefaqs
// @description  Changes the format of the timestamp in the message boards
// @include      https://gamefaqs.gamespot.com/boards/*
// @require      https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.22.2/moment.min.js
// @grant        none
// ==/UserScript==

const existingFormat = "MM/DD/YYYY hh:mm:ss A";
const newFormat = "DD/MM/YYYY HH:mm:ss";

function formatTimes() {
	const dateNodes = document.getElementsByClassName('post_time');	
	for (node of dateNodes) {
		const formattedDate = moment(node.textContent, existingFormat).format(newFormat);
		
		node.textContent = formattedDate;
	}
}

formatTimes();