NML鑑賞テンプレート

    
      
  • /*
     * @title NML鑑賞テンプレート
     * @description NML http://ml.naxos.jp/ で鑑賞したアルバムのアルバム名・URL・鑑賞日をコピペできる形にまでします
     * @include http://ml.naxos.jp/album/*
     * @license MIT License
     * @require 
     */
    javascript:(function(d){
      var a_title=d.getElementById("album-intro").getElementsByTagName("h2")[0].innerHTML.replace(/^\s+/g,"").replace(/\s+$/g,""),
          a_url=location.href,
          now=new Date(),
          a_today=now.getFullYear()+"/"+(now.getMonth()+1)+"/"+now.getDate(),
          ta=d.createElement("textarea");
      ta.innerHTML="▼"+a_title+"\n"+a_url+" "+a_today+" 鑑賞";
      ta.rows=4;
      ta.cols=60;
      d.getElementById("album-intro").appendChild(ta);
      ta.select();
    })(document);
    
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2012/11/28 16:16:41 - 2012-11-28
  2. 2012/11/27 00:46:29 - 2012-11-27