Greasy Fork is available in English.

Schlock Isolator

Schlock Isolator isolates the strip

// ==UserScript==
// @name         Schlock Isolator
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  Schlock Isolator isolates the strip
// @require https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js
// @author       You
// @match        http://*.schlockmercenary.com/*
// @match        https://*.schlockmercenary.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    var el = document.getElementById("strip");
    el.style.width = "100%"
    document.body.innerHTML= el.innerHTML;

})();