Greasy Fork is available in English.

Yahoo Finance Full Screen Chart

Makes the Yahoo Finance chart larger

질문, 리뷰하거나, 이 스크립트를 신고하세요.
// ==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/*
// ==/UserScript==


setTimeout(() => {
    // maximize chart
    document.querySelector("section > section").style.height="80%"
    // collapse watchlist
    document.querySelector("button[data-reactid='73']").click()
}, 1000)