アメブロ記事->画像取得
by
kenafad
2013-03-03 [2013/03/03 11:44:47]
-
/*
* @title アメブロ記事->画像取得
* @description
* @include http://ameblo.jp/*
* @license MIT License
* @require jQuery
*/
(function(){
var url = $('.title > a').attr('href'), images = '', entry = $('.subContents:first');
entry.find('img[src^=http://stat.ameba.jp]').not('.m').each(function(){
var img = $(this).attr('src').replace(/t\d+_/,'o');
images += '<div style="float:left;margin:3px;width:128px;"><label><img src="'+img+'" width=128><br><input value="'+img+'" onclick="this.select()"></label></div>'
});
entry.prepend('記事URL: <input onclick="this.select();" value="'+url+'"><br>'+images+'<div style="clear:both"></div>');
})();
-
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。