Greasy Fork is available in English.

Wattpad Width Fixer and Suggestions Hider

Futzes with the width settings to make it wider

질문, 리뷰하거나, 이 스크립트를 신고하세요.
// ==UserScript==
// @name         Wattpad Width Fixer and Suggestions Hider
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Futzes with the width settings to make it wider
// @author       You
// @match        https://www.wattpad.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=wattpad.com
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    function insertCss( code ) {
        var style = document.createElement('style');
        style.type = 'text/css';

        if (style.styleSheet) {
            // IE
            style.styleSheet.cssText = code;
        } else {
            // Other browsers
            style.innerHTML = code;
        }

        document.getElementsByTagName("head")[0].appendChild( style );
    }
    insertCss('#sticky-end{width:auto;}')
    insertCss('.panel-reading{margin-left:250px;width:auto;}')
    insertCss('.right-rail{display:none;}')
    insertCss('.modal-open{overflow:inherit;}')
})();