ISO Formatted Time/Date for Github & StackOverflow

Change time/date to ISO format for Github and stackoverflow websites.

< 腳本ISO Formatted Time/Date for Github & StackOverflow的回應

評論:負評 - 腳本失效或無法使用

§
發表於:2024-10-09
編輯:2024-10-09

replaceTime 函数替换为如下来可以修复当前bug

Update replaceTime function to fix bug

    function replaceTime(){
        var time_list = document.querySelectorAll("relative-time");
        time_list.forEach(function(ele) {
            console.log(ele);
            let t = new Date(ele.title);
            let t_str = t.toLocaleString();
            ele.title = t_str;
        })
    }

發表回覆

登入以回復

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址