Shows full timestamps on Facebook posts
< Rückmeldungen auf FB: Full Timestamps 2019
Works great! Thank you! This will be added to the next version.
abbr.insertAdjacentHTML('beforeend', '' + 'on ' + moment(new Date(abbr.dataset.utime * 1000)).format('l \at LTS'));
Some tweaks for this script
To get localization on dates: // @require https://momentjs.com/downloads/moment-with-locales.min.js moment.locale(navigator.language || navigator.userLanguage);
Then you need to use moment to parse AM/PM so we don't get null value in output. Since I only want to see date and time I minimized the code to this.
abbr.insertAdjacentHTML('beforeend', '' + ' ' + moment(new Date(abbr.dataset.utime * 1000)).format("LLLL"));
Could probably be tweaked some more ;)