您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Adds the actual time next to the relative time on GitHub
// ==UserScript== // @name GitHub actual time // @namespace urn://https://www.georgegillams.co.uk/greasemonkey/github_actual_time // @include *github.* // @exclude none // @version 1 // @description:en Adds the actual time next to the relative time on GitHub // @grant none // @description Adds the actual time next to the relative time on GitHub // ==/UserScript== function addTimes() { const allElements = document.getElementsByTagName('RELATIVE-TIME'); for (let i = 0; i < allElements.length; i += 1) { const element = allElements[i]; if ( element.innerHTML && element.innerHTML.includes && !element.innerHTML.includes(' - ') ) { element.innerHTML += ` - ${element.title}`; } } } function worker() { try { addTimes(); } catch (e) { // eslint-disable-next-line no-console console.log(e); } } setInterval(worker, 2000);