QRコードを表示

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

History

  1. 2017/02/02 03:12:39 - 2017-02-02
  2. 2017/02/02 03:07:57 - 2017-02-02