// ==UserScript== // @name Etherscan EasyRead // @namespace http://tampermonkey.net/ // @version 0.6 // @description change timestamp on etherscan, make it easier to be analysised. // @author verazuo // @match https://etherscan.io/address/* // @match https://etherscan.io/txs?* // @match https://etherscan.io/txsInternal?* // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; var t; if (window.location.href.match("https://etherscan.io/address/")){ t = document.getElementById("transactions"); } else if (window.location.href.match("https://etherscan.io/txsInternal?")){ t = document.getElementsByClassName("card-body")[0]; } else if (window.location.href.match("https://etherscan.io/txs?")){ t = document.getElementById("ContentPlaceHolder1_mainrow"); } var trs = t.getElementsByTagName('tr'); for (var i=1;i