您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
ooee收藏夹网站链接直接跳转
// ==UserScript== // @name ooee收藏夹链接直达 // @namespace http://tampermonkey.net/ // @version 2024-07-20 // @description ooee收藏夹网站链接直接跳转 // @author kakasearch // @match *://www.oedh.net/sites/* // @match *://www.oedh.net/go/?url=* // @icon https://www.google.com/s2/favicons?sz=64&domain=oedh.net // @grant none // @license MIT // @run-at document-end // ==/UserScript== (function() { 'use strict'; if(/sites/.test(window.location.href)){ let init = setInterval(function(){ let target = document.querySelector("span.site-go-url>a") if(target){ clearInterval(init) window.location.href = target.href } },500) }else{ let init = setInterval(function(){ let target = document.querySelector("span.loading-url") if(target){ clearInterval(init) window.location.href = target.innerText } },500) } })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址