twitter localize dates

convert mentions of dates/times in tweet to local

اعتبارا من 09-04-2024. شاهد أحدث إصدار.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

ستحتاج إلى تثبيت إضافة مثل Stylus لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتتمكن من تثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

(لدي بالفعل مثبت أنماط للمستخدم، دعني أقم بتثبيته!)

// ==UserScript==
// @name         twitter localize dates
// @namespace    http://tampermonkey.net/
// @version      2024-04-04-2
// @description  convert mentions of dates/times in tweet to local
// @author       You
// @match        https://twitter.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=twitter.com
// @grant        none
// @license MIT
// ==/UserScript==


// https://www.ge.com/digital/documentation/workflow/r_wf_time_zone_abbreviations_for_date_and_time_functions.html
        const timeZoneMap = {
            ET: "EST",
            PT: "PST"
        }


/**
         * @param {string} str
         */
        function parseTime(str) {
            const timeStrMatch = str.match(/(?<time>[0-9][0-9]?(:[0-9][0-9])?)(?<offset>(a|p|A|P)(m|M))? +(?<timezone>[a-zA-Z]*)/)
            let timeStr = timeStrMatch?.groups?.time
            let timeZone = timeStrMatch?.groups?.timezone
            if(timeStr && timeZone) {
                const today = new Date().toISOString().split("T")[0]
                if(!timeStr.includes(":")) {
                    timeStr += ":00"
                }

                timeZone = timeZoneMap[timeZone.toUpperCase()] ?? timeZone

                return new Date(`${today} ${timeStr} ${timeStrMatch?.groups.offset ?? ''} ${timeZone}`)
            }

            return null
        }





        window.addEventListener("mousemove", e => {
            if(e.target instanceof HTMLElement) {
                const tweet = e.target.closest('[data-testid="cellInnerDiv"]')
                if(tweet && tweet instanceof HTMLElement) {
                    const text = tweet.querySelector('[data-testid="tweetText"]')?.textContent.trim();
                    if(text) {
                        const parseddate = parseTime(text)
                        if(parseddate && !isNaN(+parseddate)) {
                            tweet.title = parseddate.toLocaleTimeString()
                        }
                    }
                }
            }
        })