您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
ChatGPT script to bypasse the Gamebanana link filter when browsing to other sites.
// ==UserScript== // @name GameBanana LinkFilter Bypass // @match https://gamebanana.com/linkfilter* // @run-at document-start // @description ChatGPT script to bypasse the Gamebanana link filter when browsing to other sites. // @version 1.0 // @license MIT // @namespace https://greasyfork.org/users/1509714 // ==/UserScript== (function() { const params = new URLSearchParams(window.location.search); const url = params.get('url'); if (url) window.location.replace(decodeURIComponent(url)); })();