xorpaul / increase tt-news table width

// ==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%";
  }
})();