AO3 clone fic title, author, and summary at bottom

Duplicate the information of fic title, author and summary at the bottom of the page

目前為 2022-02-14 提交的版本,檢視 最新版本


    // ==UserScript==
    // @name         AO3 clone fic title, author, and summary at bottom
    // @namespace    https://greasyfork.org/en/users/876643-elli-lili-lunch
    // @version      0.0
    // @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 sub = $('li.subscribe').clone();
            $('#new_kudo').parent().after(sub);
        });
    })(window.jQuery);