Warning: fopen(/www/sites/update.greasyfork.icu/index/store/temp/d04ed7d9b9aa63c6718ac183dafc2939.js): failed to open stream: No space left on device in /www/sites/update.greasyfork.icu/index/scriptControl.php on line 65
// ==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
// @downloadURL https://update.greasyfork.icu/scripts/524594/Etsy%20Redirector.user.js
// @updateURL https://update.greasyfork.icu/scripts/524594/Etsy%20Redirector.meta.js
// ==/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`;
}
}
})();