/*
* @title linker
* @description 今見ているページのtitleとlinkをつぶやく。ニコ動ならまたニコ相当
* @include http://*
* @license MIT License
* @require
*/
var d=document,w=window,enc=encodeURIComponent;
var e=w.getSelection,k=d.getSelection,x=d.selection;
var s=(e?e():(k)?k():(x?x.createRange().text:0)),s2=((s.toString()=='')?s:('"'+enc(s)+'"'));
var f='https://twitter.com/status',l=d.location;
var p='?status="'+enc(d.title)+'" '+s2+enc(l.href);
f += p;
if(!window.open(f,'surfing'))location.href=f;