nml nowplaying

    
      
  • /*
     * @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 です。

History

  1. 2013/01/29 01:36:33 - 2013-01-29
  2. 2013/01/29 01:06:03 - 2013-01-29
  3. 2013/01/28 23:00:33 - 2013-01-28
  4. 2013/01/15 14:10:44 - 2013-01-15