// ==UserScript== // @name AO3: [Wrangling] Save Changes at Top // @description Adds another Save Changes button at the top of the tag edit page. // @version 1.1.1 // @updateURL https://raw.githubusercontent.com/kaerstyne/ao3-wrangling-scripts/master/save-changes-at-top.user.js // @downloadURL https://raw.githubusercontent.com/kaerstyne/ao3-wrangling-scripts/master/save-changes-at-top.user.js // @author kaerstyne // @namespace https://github.com/kaerstyne/ao3-wrangling-scripts // @license GPL-3.0 // @match *://*.archiveofourown.org/tags/*/edit // @require https://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js // @grant none // ==/UserScript== (function($) { $("form.edit_tag fieldset").first().before("
" + "Submit" + "

" + "" + "

" + "
"); })(jQuery);