Changed the colors & global refresh key
This commit is contained in:
parent
7be993b273
commit
bf2ab7b56b
@ -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) {
|
||||
|
@ -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();
|
||||
}
|
||||
});
|
||||
|
@ -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) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user