The “posted at” time displayed for posts on these forums is consistently wrong, for me. All of them are off by 8 hours (they show things to have been posted 8 hours later than they actually were).
It’s annoying. I tried changing my time zone and region in my profile settings, but neither of them affected the displayed dates/times.
I had to go and create a whole new Chrome extension just to fix the issue!
Here it is, if it’s of use to anybody: UnityForumTimeFixer_0.0.1.zip
To install it:
- Extract the zip-file’s contents to a new folder.
- Launch Chrome, and open the Tools>Extensions page.
- Drag the folder from Windows Explorer onto the page.
Currently I have it set to reduce the hour listed by 8. You can customize it to your own needs in the OnPageLoad.js file.
Just change the “-8” to something else, in this line:
var newDate = new Date(oldDate.getTime() + (1000 * 60 * 60 * -8)); // subtract 8 hours
P.S. By the way, I realize there’s tons of unnecessary code for such a basic operation. There were some functions from another project I needed, so I copied the files without much trimming. I don’t think it affects the load time much, but it’s worth mentioning for if you’d want to remove the extra code yourself.