GiitHub의 "...days age"같은 곳을 날짜로 표시된 책갈피로 펼치기
5472 단어 GitHubJavaScriptbookmarklet
개요
GiitHub 안에 도처에 표시된 날짜와 시간은 모두'~days age'여서 솔직히 적합하지 않다.나는 책갈피를 만들어서 그것을 전부 연월 일시 분초로 바꾸었다.
↓↓
책갈피
github-date-expand-bookmarklet
javascript:(function(){$('time').each(function(){var t = new Date($(this).attr('datetime'));var full = '';full += t.getFullYear() + '/';full += ('0' + (t.getMonth() + 1)).slice(-2) + '/';full += ('0' + t.getDate()).slice(-2) + ' ';full += ('0' + t.getHours()).slice(-2) + ':';full += ('0' + t.getMinutes()).slice(-2) + ':';full += ('0' + t.getSeconds()).slice(-2);$(this).text(full);});})();
원시 코드
github-date-expand.js
$('time').each(function(){
var t = new Date($(this).attr('datetime'));
var full = '';
full += t.getFullYear() + '/';
full += ('0' + (t.getMonth() + 1)).slice(-2) + '/';
full += ('0' + t.getDate()).slice(-2) + ' ';
full += ('0' + t.getHours()).slice(-2) + ':';
full += ('0' + t.getMinutes()).slice(-2) + ':';
full += ('0' + t.getSeconds()).slice(-2);
$(this).text(full);
});
참고 자료
Reference
이 문제에 관하여(GiitHub의 "...days age"같은 곳을 날짜로 표시된 책갈피로 펼치기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/kobake@github/items/06dcc5b6135fd38adeb7텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)