readable Quora

Wider screen, bigger font-size, eye-protecting background color.

目前為 2022-04-02 提交的版本,檢視 最新版本

  1. // ==UserScript==
  2. // @name readable Quora
  3. // @author qianjunlang
  4. // @description Wider screen, bigger font-size, eye-protecting background color.
  5. // @match *.quora.com/*
  6. // @exclude *://www.quora.com/
  7. // @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
  8. // @version 1.03
  9. // @run-at document-idle
  10. // @license MIT License
  11. // @namespace https://greasyfork.org/users/861664
  12. // ==/UserScript==
  13.  
  14. $(".q-box.qu-display--inline-flex.qu-mr--large.Link___StyledBox-t2xg9c-0.KlcoI.SiteHeader___StyledLink-us2uvv-1.ZMeFq.qu-cursor--pointer.qu-hover--textDecoration--underline").hide();
  15.  
  16. $(".qu-bg--red").css("background-color", "blue");
  17. $(".qu-color--red").css("color", "blue");
  18.  
  19. $("#mainContent").css({
  20. "width":"1500px",
  21. "font-size":"24px",
  22. "font-family":"Calibri, copperplate, YouYuan, 'Source Han Sans', Arial, Verdana, Sans-serif",
  23.  
  24. });
  25.  
  26. $(".q-text").css({
  27. });
  28.  
  29.  
  30. $("#root").css({
  31. "background":"#CCE8CF",
  32. });
  33.  
  34. $(".ioqSAj").css({
  35. "width": (window.innerWidth -70) + "px",
  36. });