您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
stuff to make browsing houses easier, show all full size images at the bottom of the page
// ==UserScript== // @name newenglandmoves.com Housing Search Helper // @namespace harry // @version 0.1.2 // @description stuff to make browsing houses easier, show all full size images at the bottom of the page // @match http://www.newenglandmoves.com/property/details* // @require http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js // @copyright 2014+, You // ==/UserScript== $(document).ready(function() { var imgs = ''; NRT.Controls.PhotoViewer.data.forEach(function(one) { var ind = one.src.indexOf('&'); if (ind > 0) { imgs += '<img src="'+one.src.substring(0, ind)+'" style="margin:20px;"/>'; } }); $('body').append($('<div style="text-align: center; background-color: #fff;">'+imgs+'</div>')); });