fanfiction.net Widescreen Fix

Simple script to force the story text containing element on fanfiction.net & fictionpress.com to be left-aligned and the content wrapper element to use 99% width, massively improving readability if you use halfpage width on a widescreen display. Requires Scriptish.

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @id             fanfiction.net Widescreen Fix
// @name           fanfiction.net Widescreen Fix
// @namespace      *
// @description    Simple script to force the story text containing element on fanfiction.net & fictionpress.com to be left-aligned and the content wrapper element to use 99% width, massively improving readability if you use halfpage width on a widescreen display. Requires Scriptish.
// @homepageURL    https://greasyfork.org/scripts/1997-fanfiction-net-widescreen-fix
// @author         A for Anonymous
// @developer      Glenjamin
// @contributor    GhostFreeman
// @contributor    mr_daemon
// @version        2.3.1
// @include        http://*.fanfiction.net/*
// @include        http://*.fictionpress.com/*
// @exclude        http://m.fanfiction.net/*
// @exclude        http://m.fictionpress.com/*
// @priority       -99999999
// @delay          1300
// ==/UserScript==

document.getElementById("content_wrapper").style.width="99.99%"
document.getElementById("storytext").parentNode.align="left"