不要問,跳轉就對了
// ==UserScript==
// @name pixiv 你正試圖跳轉至其他網站 直接跳轉
// @namespace https://gf.qytechs.cn/scripts/501902
// @version 2.3
// @description 不要問,跳轉就對了
// @author fmnijk
// @match https://www.pixiv.net/*
// @icon https://www.google.com/s2/favicons?domain=pixiv.net
// @grant none
// @license MIT
// ==/UserScript==
(window.onload = function() {
'use strict';
if (!window.location.href.startsWith('https://www.pixiv.net/jump.php?')) {
return false;
}
var stop1 = -100;
function keeptrying1() {
if(document.getElementsByTagName("a") == null){
stop1 += 1;
if(stop1 < 0){
setTimeout(( () => keeptrying1() ), 20);
}
}else{
document.getElementsByTagName("a")[0].click();
}
}
setTimeout(( () => keeptrying1() ), 0);
})();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址