This question already has an answer here:
I need to run browser with a timezone other than operating system's time zone. Is there any way to customize time zone in any browser or is there any plugin available that provides such functionality?
This question already has an answer here:
I need to run browser with a timezone other than operating system's time zone. Is there any way to customize time zone in any browser or is there any plugin available that provides such functionality?
If you are on Linux, you can launch a process while setting an environment variable for the lifetime of the process. Linux uses the environment variable
TZ
for time zone configuration. For example, the following command will run firefox using UTC timezone.In this Regard, I've used this script on OXS: https://gist.github.com/prasadsilva/225fd0394a51e52bf62f
Works like a charm!