sr2jr Wide Screen Display

sr2jr website Wide Screen Display

// ==UserScript==
// @name         sr2jr Wide Screen Display
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  sr2jr website Wide Screen Display
// @author       fvydjt
// @match        http://www.sr2jr.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=sr2jr.com
// @grant        GM_addStyle
// ==/UserScript==

(function() {
    'use strict';
    let css=`
        .col-md-7 {
            width: 83.33333333% !important;
        }
    `;
    GM_addStyle(css);
})();