// ==UserScript==
// @name           TumblrAnotherReblogButton
// @namespace      http://www.tsuyukimakoto.com/
// @author         makoto tsuyuki <mtsuyuki@gamil.com>
// @include        http://www.tumblr.com/reblog*
// @description    Add another reblog button
// ==/UserScript==
(function(){
    if (window.location.href.indexOf("http://www.tumblr.com/reblog") != -1) {
        $elm = document.getElementById("edit_post");
        $btn = document.createElement("div");
        $btn.innerHTML = '<input type="submit" value="ReBlog post" style="margin-top:30px;"/>';
        
        $elm.insertBefore($btn, $elm.childNodes[0]);
    }
})();

