// ==UserScript==
// @title nishino_img
// @name nishino_img
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://ameblo.jp/nishino-akihiro/*
// @grant none
// ==/UserScript==
$('.skin-entryBody a:has(img)').addClass("a_pic");
$('.skin-entryBody img').addClass("img_pic");
var a_pic_url=[];
var img_pic_url=[];
for (var m = 0; m < $(".a_pic").length; m++) {
a_pic_url[m]=$(".a_pic").eq(m).attr("href");
img_pic_url[m]=$(".img_pic").eq(m).attr("src");
}
for (m = 0; m < $(".a_pic").length; m++) {
$(".skin-entryBody").append("<a class='a_list' href='"+a_pic_url[m]+"'><img src='"+img_pic_url[m]+"'></a>");
}
$(".skin-entryBody").contents().filter(function () {
return this.nodeType === 3;
}).wrap("<span class='n_text'></span>");
$('.a_list').eq(0).prevAll().remove();