/*
* @title addforklink
* @description Add a fork link in my bookmarklet page of hatena::let (for userscript)
* @include http://let.hatelabo.jp/*
* @license MIT License
*/
(function () {
a = document.querySelector("a.edit-link[href*='let.edit']");
if (!a) return;
b = a.cloneNode();
b.href = a.href.replace("edit", "fork");
b.textContent = "Fork";
//a.parentNode.insertBefore(b, a.nextSibling);
a.parentNode.insertBefore(b);
})()