Full width tables

Full-width tables

// ==UserScript==
// @name         Full width tables
// @namespace    http://github.com/kba
// @version      0.1
// @description  Full-width tables
// @author       kba
// @match        */*
// @grant        none
// ==/UserScript==

var elems = document.querySelectorAll("table");
for (var i = 0; i < elems.length; i++) {
	elems[i].style.width = '100%';
}