Skip Steam Link filter

Annoying but necessary, except for people that know their stuff.

< 腳本Skip Steam Link filter的回應

評論:負評 - 腳本失效或無法使用

§
發表於:2023-12-14

Doesn't work anymore but this change fixes it:

for (var link of document.querySelectorAll(`a[href^='https://steamcommunity.com/linkfilter/']`)) {
const urlParam = new URLSearchParams(link.search);
const originalURL = urlParam.get('u');

if (originalURL) {
link.href = decodeURIComponent(originalURL);
}
}

§
發表於:2023-12-14

Can't edit top comment, just better code indentation:


for (var link of document.querySelectorAll(`a[href^='https://steamcommunity.com/linkfilter/']`)) {
  const urlParam = new URLSearchParams(link.search);
  const originalURL = urlParam.get('u');

  if (originalURL) {
    link.href = decodeURIComponent(originalURL);
  }
}

Swyter作者
§
發表於:2023-12-15

@MoneyAllDay Noticed earlier today that it had stopped working, but hadn't started to find out why. Updated it with your more comprehensive URL parser/decoder. Many thanks! 🐧

發表回覆

登入以回復

QingJ © 2025

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