您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
This adds the creation timestamp to Fefes blogposts.
// ==UserScript== // @name Timestamps for Fefes Blog // @description This adds the creation timestamp to Fefes blogposts. // @namespace ceremony.fefesblog.timestamps // @include https://blog.fefe.de/ // @include https://blog.fefe.de/?* // @version 1.33.7 // @grant none // ==/UserScript== const posts = document.querySelectorAll("body > ul > li"); Array.prototype.forEach.call(posts, function(post){ let link = post.querySelector("a:first-child"), datetime = new Date((parseInt(link.href.substr(-8), 16) ^ 0xfefec0de) * 1000), p = document.createElement("p"); p.textContent = datetime.toLocaleTimeString("de-DE") p.classList.add("time"); post.append(p); })
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址