FB: Full Timestamps 2019

Shows full timestamps on Facebook posts

< Feedback on FB: Full Timestamps 2019

Review: OK - script works, but has bugs

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 ;)

JZerscheAuthor
§
Posted: 2018-09-01
Edited: 2018-09-27

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'));

Post reply

Sign in to post a reply.