nml nowplaying
by
xtetsuji
2013-01-29 [2013/01/29 01:36:33]
NMLのアルバム画面でツイート用の詳細文章をコピーできるようにします
/*
* @title nml nowplaying
* @description NMLのアルバム画面でツイート用の詳細文章をコピーできるようにします
* @include http://ml.naxos.jp/album/*
* @license MIT License
* @require
*/
(function(){
var title = document.querySelector("#album-intro h2").innerText,
url = location.href,
textarea = document.createElement("textarea");
textarea.id = "nowlistening_textarea";
textarea.innerText = "#nowplaying "+title+" "+url+" #nml";
textarea.rows = 5;
textarea.cols = 60;
document.getElementById("album-intro").appendChild(textarea);
textarea.select();
})();
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。