Greasy Fork is available in English.

FB: Full Timestamps 2019

Shows full timestamps on Facebook posts

< Відгуки до FB: Full Timestamps 2019

Відгук: OK - script works, but has bugs

§
Опубліковано: 26.08.2018

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

JZerscheАвтор
§
Опубліковано: 01.09.2018
Edited: 27.09.2018

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

Опублікувати відповідь

Sign in to post a reply.