Duplicate the information of fic title, author and summary at the bottom of the page
目前為
// ==UserScript==
// @name AO3 clone fic title, author, and summary at bottom
// @namespace https://greasyfork.org/en/users/876643-elli-lili-lunch
// @version 0.2
// @description Duplicate the information of fic title, author and summary at the bottom of the page
// @author Elli-lili-lunch, based off work from scriptfairy
// @include /https?://archiveofourown\.org/works/\d+/
// @require http://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js
// @grant none
// @license MIT
// ==/UserScript==
(function($) {
$(document).ready(function() {
var info = $('div.preface group').clone();
$('#feedback').parent().before(info);
});
})(window.jQuery);