Greasy Fork is available in English.

local time in stackoverflow and stackexchange

convert time in stackoverflow and stackexchange to the locale string

// ==UserScript==
// @name         local time in stackoverflow and stackexchange
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  convert time in stackoverflow and stackexchange to the locale string
// @author       You
// @match        https://*.stackoverflow.com/*
// @match        https://*.stackexchange.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    let spans = document.querySelectorAll('div.user-action-time>span');
    spans.forEach(span => {
        let date = new Date(span.title);
        span.innerHTML = date.toLocaleString();
    })
    // Your code here...
})();