Greasy Fork镜像 还支持 简体中文。

newenglandmoves.com Housing Search Helper

stuff to make browsing houses easier, show all full size images at the bottom of the page

目前為 2014-07-01 提交的版本,檢視 最新版本

// ==UserScript==
// @name       newenglandmoves.com Housing Search Helper
// @namespace  harry
// @version    0.1.1
// @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;">'+imgs+'</div>'));
});

QingJ © 2025

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