Clip Gist clone URL

    
      
  • /*
     * @title Clip Gist clone URL
     * @description Gistのページにgit cloneのためのコマンドラインを表示します
     * @include https://gist.github.com/*
     * @license MIT License
     * @require 
     */
    
    (function(){
      var div = document.getElementsByClassName("export-references")[0];
      var li = document.createElement("li");
      var gist_id = location.href.match(/gist\.github\.com\/.*?\/(\d+)/)[1];
      li.innerHTML = '<label for="x-git-clone-field"><strong>Git Clone</strong> this gist.</label><input type="text" readonly spellcheck="false" class="url-field js-url-field" name="x-git-clone-field" value="git clone git@github.com:'+gist_id+'.git">';
      div.appendChild(li);
    })();
    
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2013/11/06 20:47:33 - 2013-11-06