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;
        })
    }

답글 게시

답글을 게시하려면 로그인하세요.