Changed the colors & global refresh key

master
parent 7be993b273
commit bf2ab7b56b

@ -1,7 +1,7 @@
// ==UserScript== // ==UserScript==
// @name Dapper Ducks // @name Dapper Ducks
// @namespace http://tampermonkey.net/ // @namespace http://tampermonkey.net/
// @version 1.0.3 // @version 1.0.4
// @description Press Q to Auto-refresh // @description Press Q to Auto-refresh
// @author NFTHoarder - Modified by WTMike24 and @DUCKSAUCE (@ROCKETSAUCE) // @author NFTHoarder - Modified by WTMike24 and @DUCKSAUCE (@ROCKETSAUCE)
// @match https://magiceden.io/marketplace/dapper_ducks // @match https://magiceden.io/marketplace/dapper_ducks
@ -539,7 +539,7 @@
$(this).parent().parent().parent().parent().css({ opacity: opacity }); $(this).parent().parent().parent().parent().css({ opacity: opacity });
if(rarityRank <= window.MintSize/80) { 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) { } else if(rarityRank <= window.MintSize/10) {
$(this).parent().parent().parent().parent().css({ border: '5px solid yellow' }); $(this).parent().parent().parent().parent().css({ border: '5px solid yellow' });
} else if(rarityRank <= window.MintSize/5) { } else if(rarityRank <= window.MintSize/5) {

@ -1,12 +1,11 @@
// ==UserScript== // ==UserScript==
// @name MagicEden Auto-Refresh // @name MagicEden Auto-Refresh
// @namespace http://tampermonkey.net/ // @namespace http://tampermonkey.net/
// @version 1.0.4 // @version 1.0.5
// @description Press Q to Auto-refresh // @description Press W to Auto-refresh
// @author NFTHoarder (original DapperDucks script) & WTMike24 (reduced for any other ME page) // @author NFTHoarder (original DapperDucks script) & WTMike24 (reduced for any other ME page)
// @match https://magiceden.io/marketplace/* // @match https://magiceden.io/marketplace/*
// @match https://www.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 // @icon https://www.google.com/s2/favicons?domain=moonrank.app
// @grant none // @grant none
// ==/UserScript== // ==/UserScript==
@ -41,7 +40,7 @@
$('#root').css({ background: "black"}); $('#root').css({ background: "black"});
$('body').keydown(function (e){ $('body').keydown(function (e){
console.log(e.keyCode); console.log(e.keyCode);
if(e.keyCode == 81){ if(e.keyCode == 87){
toggleAutoRefresh(); toggleAutoRefresh();
} }
}); });

@ -1,7 +1,7 @@
// ==UserScript== // ==UserScript==
// @name Solana Samos // @name Solana Samos
// @namespace http://tampermonkey.net/ // @namespace http://tampermonkey.net/
// @version 1.0.3 // @version 1.0.4
// @description Press Q to Auto-refresh // @description Press Q to Auto-refresh
// @author NFTHoarder - Modified by WTMike24 and @DUCKSAUCE (@ROCKETSAUCE) // @author NFTHoarder - Modified by WTMike24 and @DUCKSAUCE (@ROCKETSAUCE)
// @match https://magiceden.io/marketplace/solsamo // @match https://magiceden.io/marketplace/solsamo
@ -95,7 +95,7 @@
$(this).parent().parent().parent().parent().css({ opacity: opacity }); $(this).parent().parent().parent().parent().css({ opacity: opacity });
if(rarityRank <= window.MintSize/80) { 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) { } else if(rarityRank <= window.MintSize/10) {
$(this).parent().parent().parent().parent().css({ border: '5px solid yellow' }); $(this).parent().parent().parent().parent().css({ border: '5px solid yellow' });
} else if(rarityRank <= window.MintSize/5) { } else if(rarityRank <= window.MintSize/5) {

Loading…
Cancel
Save