您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
This script will load all the pictures that belong to the same series and show them below the page.
// ==UserScript== // @name Better HollywoodTuna // @namespace betterhollywoodtune.dekart25.com // @version 0.3 // @description This script will load all the pictures that belong to the same series and show them below the page. // @author dekart25 // @match http://www.hollywoodtuna.com/?page_id=* // @grant none // ==/UserScript== var firstImage = $("#page div:first-child")[3]; var divComTodasAsImagens = $(firstImage).parent(); divComTodasAsImagens.find("div").css("width","").css("height",""); divComTodasAsImagens.find("img").removeAttr("width").removeAttr("height"); divComTodasAsImagens.find("img").each(function(index,elem) { elem.src = elem.src.replace("images3","images3/bigimages3"); })