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.3
// @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 test = $('div.preface').clone();
$('#feedback').parent().after(test);
// var summary = $('div.preface blockquote').clone();
// $('#feedback').parent().after(summary);
// var author = $('div.preface .byline').clone();
// $('#feedback').parent().after(author);
// var title = $('div.preface .title.heading').clone();
// $('#feedback').parent().after(title);
});
})(window.jQuery);