Makes the images on show list a little larger.
目前為
// ==UserScript== // @name EZTV Bigger Show List Images // @namespace http://localhost // @description Makes the images on show list a little larger. // @author Son_Of_Diablo // @include *eztv.it/showlist/ // @version 0.1 // ==/UserScript== src = document.body.innerHTML; src = src.replace(/thumb_50_42/g,"main"); src = src.replace(/width=\"50\"/g,"width=\"200\""); src = src.replace(/height=\"42\"/g,"height=\"168\""); document.body.innerHTML = src;