您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Ensures BoardGameGeek market pages attempt to use your local currency via a URL parameter.
当前为
// ==UserScript== // @name Local Geekmarket // @namespace net.cheyne // @version 1.0 // @description Ensures BoardGameGeek market pages attempt to use your local currency via a URL parameter. // @author Iain Cheyne // @match https://boardgamegeek.com/market* // @exclude https://boardgamegeek.com/market/account* // @exclude https://boardgamegeek.com/market/user* // @exclude https://boardgamegeek.com/market/dashboard* // @exclude https://boardgamegeek.com/market/sell* // @grant none // @license GNU GPLv3 // ==/UserScript== (function() { 'use strict'; const currentUrl = new URL(window.location.href); const currencyParam = 'currency'; const desiredCurrency = 'GBP'; // Check if the currency parameter is already set to the desired currency if (currentUrl.searchParams.get(currencyParam) !== desiredCurrency) { // Set or update the currency parameter to the desired currency currentUrl.searchParams.set(currencyParam, desiredCurrency); // Replace the current URL with the modified one window.location.replace(currentUrl.href); } })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址