Greasy Fork is available in English.
Удаляет редиректы из ссылок на форуме 4PDA
当前为
// ==UserScript==
// @name 4PDA Удаление редиректов
// @description Удаляет редиректы из ссылок на форуме 4PDA
// @namespace Neur0toxine
// @match https://4pda.to/forum/index.php*
// @grant none
// @version 1.0
// @license MIT
// @author NeoCortex
// @run-at document-idle
// ==/UserScript==
document.querySelectorAll('a[href^="//4pda.to/stat/go?u=').forEach((el) => {
const url = new URL(el.href)
const realUrl = url.searchParams.get('u')
if (null == realUrl) {
return
}
el.href = realUrl
})