Greasy Fork

VerticalFox - MangaFox/FanFox Vertical Screen Reader

Read Mangafox without annoyances of width in vertical screens

目前为 2020-02-11 提交的版本。查看 最新版本

// ==UserScript==
// @name         VerticalFox - MangaFox/FanFox Vertical Screen Reader
// @namespace    http://tampermonkey.net/
// @version      420.69-NICE!-v1
// @description  Read Mangafox without annoyances of width in vertical screens
// @author       SendHelp
// @match        http://fanfox.net/manga/*/*/*
// @grant        WTFPL License
// ==/UserScript==

(
function addGlobalStyle(css) {
    var head, style;
    head = document.getElementsByTagName('head')[0];
    if (!head) { return; }
    style = document.createElement('style');
    style.type = 'text/css';
    style.innerHTML = css;
    head.appendChild(style);
    addGlobalStyle('body { min-width: auto !important; min-height: auto; overflow-x: hidden; margin:0 auto !important;}');
}



)();