/*
* @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);
})();