2013年2月17日日曜日

GREEのSocial Feedbackのブックマークレットを作ってみる

GREEのSocial Feedbackのボタンの設置方法を参考に、 GREEのSocial FeedBackのブックマークレットを作ってみました。
javascript:(function(){
var f = document.createElement('iframe');
f.src='http://share.gree.jp/share?url=' + encodeURIComponent(location.href) + '&type=0&height=20';
f.width=100;
f.height=100;
f.frameBorder=0;
f.marginWidth=0;
f.marginHeight=0;
f.setAttribute('scrolling','no');
f.setAttribute('allowTransparency','true');
f.style.border='none';
f.style.overflow='hidden';
f.style.width='100px';
f.style.height='20px';
document.body.insertBefore(f, document.body.firstChild);
})();
こちらをブックマークに入れれば、いろんなサイトでGREEに共有ができると思います。

0 件のコメント: