您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Wider screen, bigger font-size, eye-protecting background color.
当前为
- // ==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://greasyfork.org/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",
- });