linkeee
by
eban
2015-07-08 [2015/07/08 17:06:48]
今見ているページのtitleとURLをtwitterでつぶやく。ニコ動ならまたニコ相当
@@ -8,9 +8,12 @@
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 s=(e?e():(k)?k():(x?x.createRange().text:0)),s2=((s.toString()=='')?s:('"'+enc(s)+'" '));
var f='https://twitter.com/',l=d.location;
var p='?status="'+enc(d.title)+'" '+s2+enc(l.href);
f += p;
+if (l.href =~ /www\.nicovideo\.jp/) {
+ p="[またニコ] "+p.replace(/ ‐ ニコニコ動画.*$/, "")+" #nicovideo";
+}
if(!window.open(f,'surfing'))location.href=f;
void(0);
/*
* @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/',l=d.location;
var p='?status="'+enc(d.title)+'" '+s2+enc(l.href);
f += p;
if (l.href =~ /www\.nicovideo\.jp/) {
p="[またニコ] "+p.replace(/ ‐ ニコニコ動画.*$/, "")+" #nicovideo";
}
if(!window.open(f,'surfing'))location.href=f;
void(0);
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。