您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Redirects Amazon sites to Amazon.co.uk
// ==UserScript== // @name Amazon Redirect UK // @namespace amazon-redirect-uk // @author SirGryphin // @version 1.2 // @description Redirects Amazon sites to Amazon.co.uk // @match https://*.amazon.com/* // @match https://*.amazon.com.au/* // @match https://*.amazon.com.be/* // @match https://*.amazon.com.br/* // @match https://*.amazon.ca/* // @match https://*.amazon.cn/* // @match https://*.amazon.eg/* // @match https://*.amazon.fr/* // @match https://*.amazon.de/* // @match https://*.amazon.in/* // @match https://*.amazon.it/* // @match https://*.amazon.co.jp/* // @match https://*.amazon.com.mx/* // @match https://*.amazon.nl/* // @match https://*.amazon.pl/* // @match https://*.amazon.sa/* // @match https://*.amazon.sg/* // @match https://*.amazon.es/* // @match https://*.amazon.se/* // @match https://*.amazon.com.tr/* // @match https://*.amazon.ae/* // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; if (window.location.hostname !== 'www.amazon.co.uk') { window.location.replace(window.location.href.replace(/\/\/[^\/]+/, '//www.amazon.co.uk')); } })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址