// ==UserScript== // @name Yahoo Finance Full Screen Chart // @namespace http://tampermonkey.net/ // @version 0.1.1 // @description Makes the Yahoo Finance chart larger // @match *.finance.yahoo.com/chart/* // @match finance.yahoo.com/chart/* // @downloadURL none // ==/UserScript== setTimeout(() => { // maximize chart document.querySelector("section > section").style.height="80%" // collapse watchlist document.querySelector("button[data-reactid='73']").click() }, 1000)