您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Cleans up the TV Guide listings page
// ==UserScript== // @match http://www.tvguide.com/listings/ // @name TV Guide Tidy // @description Cleans up the TV Guide listings page // @version 1.0 // @namespace https://greasyfork.org/users/4821 // ==/UserScript== window.onload = function(){ var l = document.querySelector(".listings-w"); var b = document.querySelector("body"); l.parentNode.removeChild(l); b.innerHTML = ""; b.appendChild(l); l.setAttribute("style", "position:absolute;top:0;left:0;width:100%;height:100%"); document.querySelector(".gridDiv").setAttribute("style", "height:auto;overflow-x:hidden;border-bottom:solid 1px #DCDDCB"); };