QRコードを表示(hatena)

    
      
  • /*
     * @title QRコードを表示
     * @description Google Chart API を使って現在開いているページのQRコードを表示。
     * @include http://*
     * @license MIT License
     */
    
    (function(){
    var t=encodeURIComponent(location.href);
        var w=window.open('about:blank','_blank','width=325, height=350');
        w.document.open();
        w.document.write('<html><body><div><img src="http://chart.googleapis.com/chart?choe=Shift_JIS&chs=300x300&cht=qr&chl='+t+'" alt="" height=300 width=300></div>');
        w.document.write('<div><input onclick="window.close();" type="button" value="close" /></div></body></html>');
        w.document.close();
    })();
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2017/02/02 00:58:51 - 2017-02-02
  2. 2017/02/01 23:05:19 - 2017-02-01
  3. 2013/10/24 00:30:24 - 2013-10-24
  4. 2013/10/24 00:08:32 - 2013-10-24
  5. 2012/03/10 16:48:54 - 2012-03-10
  6. 2012/03/10 16:47:25 - 2012-03-10