readable Quora

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

As of 02.04.2022. See апошняя версія.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name        readable Quora
// @author      qianjunlang
// @description Wider screen, bigger font-size, eye-protecting background color.
// @match       *.quora.com/*
// @exclude     *://www.quora.com/
// @require     http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
// @version     1.01
// @run-at      document-idle
// @license MIT License
// @namespace https://greatest.deepsurf.us/users/861664
// ==/UserScript==

    $(".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();

    $(".qu-bg--red").css("background-color", "blue");
    $(".qu-color--red").css("color", "blue");

    $("#mainContent").css({
        "width":"1500px",
        "font-size":"24px",
        "font-family":"Verdana,sans-serif",

    });

    $("#root").css({
        "background":"#CCE8CF",

    });

    $(".ioqSAj").css({
        "width": (window.innerWidth -70) + "px",
    });