Quizlet Text Enlargement

Enlarge text on the learn page of Quizlet

目前为 2021-07-04 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @match *://*.quizlet.com/*
  3. // @name Quizlet Text Enlargement
  4. // @description Enlarge text on the learn page of Quizlet
  5. // @version 0.0.1.20210704205316
  6. // @namespace https://greasyfork.org/users/790368
  7. // ==/UserScript==
  8. for (let e of document.getElementsByClassName("FormattedText")) { e.style.fontSize == "50px"; }