NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name increase tt-news table width
// @namespace http://tampermonkey.net/
// @version 0.1
// @description increase tt-news table width
// @author xorpaul
// @match https://forum.tt-news.de/*
// @license Apache-2.0
// @grant none
// ==/UserScript==
(function () {
'use strict';
var targNode = document.querySelector("#mcontent > table:nth-child(2) > tbody > tr > td:nth-child(1) > table");
if (targNode) {
//alert(targNode.style);
targNode.style.width = "110%";
}
})();