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.

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 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"