From bf2ab7b56bfa583a6618b0d1674d774565256d2d Mon Sep 17 00:00:00 2001 From: Michael Date: Fri, 3 Dec 2021 18:22:20 -0500 Subject: [PATCH] Changed the colors & global refresh key --- javascript/MagicEden-DapperDucks.js | 4 ++-- javascript/MagicEden-MarketRefresh.js | 7 +++---- javascript/MagicEden-SolSamos.js | 4 ++-- 3 files changed, 7 insertions(+), 8 deletions(-) diff --git a/javascript/MagicEden-DapperDucks.js b/javascript/MagicEden-DapperDucks.js index d2da0e3..19c446c 100644 --- a/javascript/MagicEden-DapperDucks.js +++ b/javascript/MagicEden-DapperDucks.js @@ -1,7 +1,7 @@ // ==UserScript== // @name Dapper Ducks // @namespace http://tampermonkey.net/ -// @version 1.0.3 +// @version 1.0.4 // @description Press Q to Auto-refresh // @author NFTHoarder - Modified by WTMike24 and @DUCKSAUCE (@ROCKETSAUCE) // @match https://magiceden.io/marketplace/dapper_ducks @@ -539,7 +539,7 @@ $(this).parent().parent().parent().parent().css({ opacity: opacity }); if(rarityRank <= window.MintSize/80) { - $(this).parent().parent().parent().parent().css({ border: '5px solid chartreuse' }); + $(this).parent().parent().parent().parent().css({ border: '5px solid crimson' }); } else if(rarityRank <= window.MintSize/10) { $(this).parent().parent().parent().parent().css({ border: '5px solid yellow' }); } else if(rarityRank <= window.MintSize/5) { diff --git a/javascript/MagicEden-MarketRefresh.js b/javascript/MagicEden-MarketRefresh.js index bfd5fe4..001ef70 100644 --- a/javascript/MagicEden-MarketRefresh.js +++ b/javascript/MagicEden-MarketRefresh.js @@ -1,12 +1,11 @@ // ==UserScript== // @name MagicEden Auto-Refresh // @namespace http://tampermonkey.net/ -// @version 1.0.4 -// @description Press Q to Auto-refresh +// @version 1.0.5 +// @description Press W to Auto-refresh // @author NFTHoarder (original DapperDucks script) & WTMike24 (reduced for any other ME page) // @match https://magiceden.io/marketplace/* // @match https://www.magiceden.io/marketplace/* -// @exclude https://magiceden.io/marketplace/dapper_ducks // @icon https://www.google.com/s2/favicons?domain=moonrank.app // @grant none // ==/UserScript== @@ -41,7 +40,7 @@ $('#root').css({ background: "black"}); $('body').keydown(function (e){ console.log(e.keyCode); - if(e.keyCode == 81){ + if(e.keyCode == 87){ toggleAutoRefresh(); } }); diff --git a/javascript/MagicEden-SolSamos.js b/javascript/MagicEden-SolSamos.js index f756a16..97afb5d 100644 --- a/javascript/MagicEden-SolSamos.js +++ b/javascript/MagicEden-SolSamos.js @@ -1,7 +1,7 @@ // ==UserScript== // @name Solana Samos // @namespace http://tampermonkey.net/ -// @version 1.0.3 +// @version 1.0.4 // @description Press Q to Auto-refresh // @author NFTHoarder - Modified by WTMike24 and @DUCKSAUCE (@ROCKETSAUCE) // @match https://magiceden.io/marketplace/solsamo @@ -95,7 +95,7 @@ $(this).parent().parent().parent().parent().css({ opacity: opacity }); if(rarityRank <= window.MintSize/80) { - $(this).parent().parent().parent().parent().css({ border: '5px solid chartreuse' }); + $(this).parent().parent().parent().parent().css({ border: '5px solid crimson' }); } else if(rarityRank <= window.MintSize/10) { $(this).parent().parent().parent().parent().css({ border: '5px solid yellow' }); } else if(rarityRank <= window.MintSize/5) {