clip evetcast summary
by
xtetsuji
2013-01-13 [2013/01/13 05:04:38]
evetcastのイベントのコピペ用サマリーを作ります。Twitter投稿用。
-
/*
* @title clip evetcast summary
* @description evetcastのイベントのコピペ用サマリーを作ります。Twitter投稿用。
* @include http://clip.eventcast.jp/event/*
* @license MIT License
* @require
*/
(function(){
var datetime = document.getElementsByClassName("datetime")[0].innerHTML.replace(/ .*/,"").replace(/\s+-\s+/,"〜"),
title = document.getElementsByClassName("summary")[0].getElementsByTagName("a")[0].innerText,
url = location.href,
textarea = document.createElement("textarea");
textarea.innerText = "#clip_eventcast ["+datetime+"] "+title+" "+url;
textarea.rows = "5";
textarea.cols = "100%";
document.getElementsByClassName("box")[0].appendChild(textarea);
textarea.select();
})();
-
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。