// ==UserScript== // @name 匿名版图片修复 // @namespace http://zhihaofans.com // @version 0.0.4 // @description 匿名版图片修复(正常时请关闭) // @author zhihaofans // @match https://h.nimingban.com/t/* // @grant none // @note V0.0.1:匿名版图片修复(正常时请关闭) // @icon https://h.nimingban.com/favicon.ico // @downloadURL none // ==/UserScript== function nmb_t_fix() { var nowpage = $(".uk-pagination.uk-pagination-left.h-pagination li.uk-active span").text(); var nowid = $(".h-threads-item.uk-clearfix").attr('data-threads-id'); $.getJSON("/Api/thread?id=" + nowid + "&page=" + nowpage, function(data) { if (data.img !== "") { var nmg_img = '
'; $(".h-threads-item-main").html(nmg_img + $(".h-threads-item-main").html()); } var a = 0; $.each(data.replys, function(i, item) { if (item.img !== "") { var nmg_img = ''; $(".h-threads-item-replys .h-threads-item-reply:eq(" + a + ") .h-threads-item-reply-main").html(nmg_img + $(".h-threads-item-replys .h-threads-item-reply:eq(" + a + ") .h-threads-item-reply-main").html()); a++; } }); }); } $(document).ready(function() { nmb_t_fix(); });