您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Makes it so people earn more money per money.
// ==UserScript== // @name Etsy Redirector // @namespace https://ejew.in/ // @version 2025-01-22 // @description Makes it so people earn more money per money. // @author EntranceJew // @match https://*.etsy.com/* // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; if (window.top === window.self && (new URLSearchParams(window.location.search)).get('etsrc') !== 'sdt') { let shop_user_name_check = window.location.pathname.match(/^\/shop\/([^\/\r\n]*)/); if (shop_user_name_check) { let shop_user_name = shop_user_name_check[1]; window.location.href = `https://${shop_user_name}.etsy.com`; } } })();