MarkdownUrlGeneratorは、WebサイトをGitHubマークダウンリンクとして出力するGoogleChrome用ブックマークレットです。
作成したブックマークレットをクリックすると、クリップボードにサイトの名前とURLをGitHubのマークダウン形式でコピーします。
[ Atria64/MarkdownUrlGenerator: URL converter to output as GitHub markdown. ] ( https://github.com/Atria64/MarkdownUrlGenerator )
- GoogleChromeのブックマークマネージャーを開きます(Ctrl+Shift+O)
- 右上の新しいブックマークを開きます
- 名前には "MarkDownUrlGen" などの任意の名前を入力します。
- URLには以下の文字列を入力してください。(compiled.js)
javascript:(function(){title=document.title;href=document.location.href;var b="["+title+"]("+href+")",a=document.createElement("div"),c=document.createElement("pre");c.style.webkitUserSelect="auto";c.style.userSelect="auto";a.appendChild(c).textContent=b;b=a.style;b.position="fixed";b.right="200%";document.body.appendChild(a);document.getSelection().selectAllChildren(a);document.execCommand("copy");document.body.removeChild(a);alert("\u30af\u30ea\u30c3\u30d7\u30dc\u30fc\u30c9\u306b\u30b3\u30d4\u30fc\u3057\u307e\u3057\u305f\u3002")})();
- 保存を押して導入完了です。

