Full width tables

Full-width tables

当前为 2016-04-06 提交的版本,查看 最新版本

// ==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%';
}

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址