您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Skip a listing of the dates on a list page of the urls
当前为
// ==UserScript== // @name Skip a Listing of the Dates // @namespace https://gf.qytechs.cn/users/19523 // @description Skip a listing of the dates on a list page of the urls // @include http://web.archive.org/web/*/* // @include https://web.archive.org/web/*/* // @version 0.1 // @grant none // ==/UserScript== document.addEventListener('DOMContentLoaded', function () { var phrases = location.pathname.split('/'); if (phrases.slice(-1)[0].slice(-1)[0] !== '*' || phrases[2].indexOf('*') < 0) { return; } var observer = new MutationObserver(function (mutations) { var aElements = document.querySelectorAll('#resultsUrl_wrapper td.url > a'); for (var i = 0, a; a = aElements[i]; i++) { var names = a.pathname.split('/'); names[2] = '99999999999999'; a.pathname = names.join('/'); } }); observer.observe(document.getElementById('resultsUrl').getElementsByTagName('tbody')[0], { childList: true }); });
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址