WhatsApp Dual Timezone

Show message timestamps in two timezones.

< 脚本 WhatsApp Dual Timezone 的反馈

提问 / 留言

§
发布于:2025-09-12

Unclear how to use this or make it work. Can you provide a screenshot or gif showing how to activate this and set the two different timezones it will show me?? (the script is enabled, but how do I actually use it?)

§
发布于:2025-12-01

There appears to be a slight change in time formatting by whatsapp.

You have to add toLowerCase() to the if condition check in Line 51

The function will be

function updateTimestamps() {
  document.querySelectorAll("span").forEach((span) => {
    if ([" am", " pm"].includes(span.innerHTML.slice(-3))) {
      span.innerHTML = convertESTtoIST(span.textContent);
    }
  });
}

发布留言

登录以发布留言。