Twitterに「いいね!」をつける。
by
macky1207
2010-10-17 [2010/10/17 03:10:10]
いいね!をつけたい。
-
/*
* @title Twitterに「いいね!」をつける。
* @description いいね!をつけたい。
* @include http://twitter*
* @license MIT License
* @require jQuery
*/
$(function(){
Ene();
function Ene(){
//汚い・・・いつか整理。
var isOld = ($(".tweet-actions").length==0)? true : false ;
var box = (isOld)? ".meta.entry-meta" : ".tweet-actions" ;
console.log(box);
$.each($(box),function(){
if($(this).parent().children("iframe").length === 0){
var url = (!isOld)?($(this).prev().attr("href").split("/#!")[1]):($(this).children(".entry-date").attr("href"));
if(url){
url = encodeURIComponent((isOld? '' :"http://twitter.com")+url);
var html = '\
<iframe src="http://www.facebook.com/plugins/like.php?href='+url+'&layout=button_count&show_faces=true&width=100&action=like&colorscheme=light&height=21" scrolling="no" frameborder="0" style="display:inline-block; border:none; overflow:hidden; width:70px; height:21px; vertical-align:bottom;" allowTransparency="true"></iframe>';
$($(this).parent()).prepend(html);
}
}
});
setTimeout(Ene,10000);
}
});
-
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。