WK Font Sizer

change font size of reviews

질문, 리뷰하거나, 이 스크립트를 신고하세요.
// ==UserScript==
// @name         WK Font Sizer
// @namespace    WKFontSizer
// @version      0.1
// @description  change font size of reviews
// @author       Ethan
// @match        http*://www.wanikani.com/review/session*
// @match        http*://www.wanikani.com/lesson/session*
// @grant        none
// ==/UserScript==

fontSize = "10px";

//get element
charDiv = document.getElementById("character");

//add style
charDiv.style.fontSize = fontSize;