Greasy Fork is available in English.
安装后,苦力怕论坛内点击外链将将不再弹出确认跳转提示
当前为
// ==UserScript==
// @name 删除苦力怕论坛外链二次跳转
// @namespace Mooshed88
// @version 0.1
// @description 安装后,苦力怕论坛内点击外链将将不再弹出确认跳转提示
// @author Mooshed88
// @match https://klpbbs.com/*
// @grant none
// @license Unlicense
// ==/UserScript==
(function() {
'use strict';
const links = document.querySelectorAll('a');
links.forEach(link => {
const href = link.href;
if (href.includes('klpbbs.com/url.php?url=')) {
const urlParam = href.split('url=')[1];
try {
const decodedUrl = atob(urlParam);
link.href = decodedUrl;
link.target = '_blank';
console.log('已处理',link)
} catch (error) {
console.error('处理URL失败:', href);
}
}
});
})();