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.01
  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":"Verdana,sans-serif",
  23.  
  24. });
  25.  
  26. $("#root").css({
  27. "background":"#CCE8CF",
  28.  
  29. });
  30.  
  31. $(".ioqSAj").css({
  32. "width": (window.innerWidth -70) + "px",
  33. });