MeTruyenCV Full Reading Page

Đọc trên desktop ở trang MeTruyenCV.Com full màn hình không bị cố định 1000px gây khó chịu

当前为 2023-04-05 提交的版本,查看 最新版本

// ==UserScript==
// @name         MeTruyenCV Full Reading Page
// @namespace    http://tampermonkey.net/
// @version      1.2
// @description  Đọc trên desktop ở trang MeTruyenCV.Com full màn hình không bị cố định 1000px gây khó chịu
// @author       mkbyme
// @match        https://metruyencv.com/truyen/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=metruyencv.com
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    const div = document.querySelector('.nh-read__container');
    if(div){
        div.style.width='100%';
        div.style.maxWidth='100%';
    }
    const menu = document.querySelector('#js-left-menu');
    if(menu){
        menu.style.left='audto';
        menu.style.right='0px';
    }
})();