Ignore go to (Socialmediagirls)

Set real links on posts in socialmediagirls.com

// ==UserScript==
// @name                Ignore go to (Socialmediagirls)
// @namespace           https://gf.qytechs.cn/users/821661
// @match               https://forums.socialmediagirls.com/*
// @grant               none
// @version             1.1
// @run-at              document-start
// @author              hdyzen
// @description         Set real links on posts in socialmediagirls.com
// @license             GPL-3.0-only
// ==/UserScript==

document.addEventListener("readystatechange", () => {
	if (document.readyState !== "interactive") {
		return;
	}

	const nodes = document.querySelectorAll("a[href*='/goto/link-confirmation?url=']");

	for (const node of nodes) {
		node.href = getURL(node.search);
	}
});

function getURL(search) {
	const params = new URLSearchParams(search);
	const url = params.get("url");

	return atob(url);
}

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址