Reddit exact post time

Create a static copy of exact time of Reddit post time on side with formatted date

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

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

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

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

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

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.

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

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

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

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

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

// ==UserScript==
// @name         Reddit exact post time
// @namespace    https://rant.li/boson
// @version      1.1
// @description  Create a static copy of exact time of Reddit post time on side with formatted date
// @author       Boson
// @match        *://*.reddit.com/*
// @grant        none
// @license      GNU AGPLv3
// ==/UserScript==

(function() {
    'use strict';

    function formatDate(date) {
        const options = {
            month: 'short',
            day: 'numeric',
            weekday: 'short',
            hour: '2-digit',
            minute: '2-digit',
            hour12: false
        };
        return date.toLocaleString('en-US', options);
    }

    function createStaticCopy(originalTimeElement) {
        const datetime = originalTimeElement.getAttribute('datetime');
        const utcDate = new Date(datetime);
        const localDate = new Date(utcDate.getTime());
        const formattedDate = formatDate(localDate);

        const staticTimeElement = document.createElement('time');
        staticTimeElement.setAttribute('class', 'static-timestamp'); // Different class to avoid live update
        staticTimeElement.setAttribute('datetime', datetime);
        staticTimeElement.setAttribute('title', formattedDate);
        staticTimeElement.textContent = ` - ${formattedDate}`;
        return staticTimeElement;
    }

    function processTimeElements() {
        const timeElements = document.querySelectorAll('time.live-timestamp');
        timeElements.forEach(originalTimeElement => {
            const staticCopy = createStaticCopy(originalTimeElement);
            originalTimeElement.parentNode.insertBefore(staticCopy, originalTimeElement.nextSibling);
        });
    }

    function processNewNodes(nodes) {
        nodes.forEach(node => {
            if (node.nodeType === Node.ELEMENT_NODE) {
                const timeElements = node.querySelectorAll ? node.querySelectorAll('time.live-timestamp') : [];
                timeElements.forEach(originalTimeElement => {
                    const staticCopy = createStaticCopy(originalTimeElement);
                    originalTimeElement.parentNode.insertBefore(staticCopy, originalTimeElement.nextSibling);
                });
            }
        });
    }

    function handleMutations(mutationsList, observer) {
        for (let mutation of mutationsList) {
            if (mutation.type === 'childList') {
                processNewNodes(mutation.addedNodes);
            }
        }
    }

    window.addEventListener('load', function() {
        processTimeElements();
        const observer = new MutationObserver(handleMutations);
        const config = { childList: true, subtree: true };
        observer.observe(document.body, config);
    });
})();