Greasy Fork

Greasy Fork is available in English.

掌阅在线看书宽屏样式

这是一个把页面调整成宽屏样式的脚本,理论上适用于大多数屏幕。

目前为 2021-07-29 提交的版本,查看 最新版本

// ==UserScript==
// @name         掌阅在线看书宽屏样式
// @description   这是一个把页面调整成宽屏样式的脚本,理论上适用于大多数屏幕。
// @namespace    http://tampermonkey.net/
// @version      0.1
// @author       Keung Tan
// @match        https://www.ireader.com.cn/index.php?ca=Chapter.Index&pca=Chapter.Index&bid=*&cid=*
// @icon         https://www.ireader.com/favicon.ico
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // 动态添加样式
    var style = document.createElement("style");
    style.type = "text/css";
    var stylesheet = `.content{width: 100%}
.article{width: 100%}
#iframe_chapter{width: 95%;margin-top: -28%;}
.conRightTop{display: none}
.fixed{width: 100%;left: 0;margin-left: 0;position: unset;}
.header{/*! width: 100%; *//*! position: unset; */margin: 0 auto;height: unset;}
.listLeft{left: 0;}
.header .headLeft{padding-top: 0}
.chapter{left: unset; right: 1rem}
`;
    try{
        style.appendChild(document.createTextNode(stylesheet));
    }catch(ex){
        //针对IE
        style.styleSheet.cssText = stylesheet;
    }
    var head = document.getElementsByTagName("head")[0];
    head.appendChild(style);

    var node = document.createElement("a");
    node.style = "position: fixed; top: 0px; right: 20px;";
    node.innerText = "新窗口阅读";
    node.id = "btnNewTab";
    node.onclick=function(){
        window.open($('#iframe_chapter').attr('src'));
    }
    var body = document.getElementsByTagName("body")[0];
    body.appendChild(node);
})();