Show absolute time in timeline in bangumi

Swap content and data-original-title attributes of span elements within divs of class post_actions date, and monitor for changes in the timeline div

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         Show absolute time in timeline in bangumi
// @namespace    https://jirehlov.com/
// @version      0.2
// @description  Swap content and data-original-title attributes of span elements within divs of class post_actions date, and monitor for changes in the timeline div
// @author       Jirehlov
// @match        https://bgm.tv/*
// @match        https://bangumi.tv/*
// @match        https://chii.in/*
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    let timelineId = null;

    function swapContentAndTitle() {
        document.querySelectorAll('div.post_actions.date').forEach(function(div) {
            div.querySelectorAll('span.titleTip').forEach(function(span) {
                const currentContent = span.textContent;
                const currentTitle = span.getAttribute('data-original-title');
                span.textContent = currentTitle;
                span.setAttribute('data-original-title', currentContent);
            });
        });
    }

    function checkAndUpdateTimeline() {
        const timelineDiv = document.getElementById('timeline');
        if (timelineDiv) {
            if (timelineId === null) {
                timelineId = timelineDiv;
                swapContentAndTitle();
                observeTimelineChanges();
            } else if (timelineDiv !== timelineId) {
                timelineId = timelineDiv;
                swapContentAndTitle();
            }
        }
    }

    function observeTimelineChanges() {
        const observer = new MutationObserver(function(mutations) {
            mutations.forEach(function(mutation) {
                if (mutation.type === 'childList' || mutation.type === 'attributes') {
                    checkAndUpdateTimeline();
                }
            });
        });

        observer.observe(document.body, {
            childList: true,
            subtree: true,
            attributes: true
        });
    }

    checkAndUpdateTimeline();
})();