您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Replace relative time with actual date from title attribute on jpg4.su / jpg5.su / jpg6.su / JPG Fish / imgbb.com / ibb.co
当前为
// ==UserScript== // @name Date Display Full Timestamp for jpg4.su / jpg5.su / JPG Fish / imgbb.com / ibb.co // @namespace http://tampermonkey.net/ // @version 1.5 // @description Replace relative time with actual date from title attribute on jpg4.su / jpg5.su / jpg6.su / JPG Fish / imgbb.com / ibb.co // @match https://jpg4.su/* // @match https://jpg5.su/* // @match https://jpg6.su/* // @match https://imgbb.com/* // @match https://ibb.co/* // @grant none // @author Aligator // @license GNU GPLv3 // ==/UserScript== (function() { 'use strict'; function updateDateDisplay() { const elements = document.querySelectorAll('.description-meta'); elements.forEach(element => { const span = element.querySelector('span[title]'); if (span && span.title) { span.textContent = span.title; } }); } // Run the function when the DOM is fully loaded if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', updateDateDisplay); } else { updateDateDisplay(); } // Run the function periodically in case of dynamic content loading setInterval(updateDateDisplay, 5000); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址