Project#4 Erase

// ==UserScript==
// @name         Coinmarkethide
// @namespace    coinmarketcap
// @version      0.1
// @description  Hide coin values
// @author       Connie Sarantos
// @match        https://coinmarketcap.com/currencies/vechain/
// @grant        none
// ==/UserScript==

(function() {

var j;

function main() {

    j = jQuery.noConflict();

    j('span').each(function() { hideElement(this); });

    ready('span', function(e) { hideElement(e); });

    function hideElement(e) { j(e).hide(); }
    j('.container').each(function() { hideElement(this); });
    j('.container').each(function() { hideElement(this); });
ready('li', function(e) { hideElement(e); });
function fadeBackIn() {
j('li').fadeIn(50000);}function fadeOutIn() {
j('li').fadeOut(500000, fadeBackIn); }
j('li').fadeIn(50000);}{
}
main();

})();

So for my ERASE project I decided to go onto coin market cap and erase the numbers attached to coins. I thought this was a fun way to manipulate the market, I think rather than erasing replacing numbers could be a lot of fun too.

Comments are closed.