AO3 clone "mark for later" button at bottom of fic

Recreates marked for later button at end of works so you can mark work as read (note this is included in my AO3 Re-read Savior script)

  1. // ==UserScript==
  2. // @name AO3 clone "mark for later" button at bottom of fic
  3. // @namespace https://greasyfork.org/en/users/876643-elli-lili-lunch
  4. // @version 0.0
  5. // @description Recreates marked for later button at end of works so you can mark work as read (note this is included in my AO3 Re-read Savior script)
  6. // @author elli-lili-lunch, based on script by scriptfairy
  7. // @include /https?://archiveofourown\.org/works/\d+/
  8. // @require http://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js
  9. // @grant none
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. (function($) {
  14. $(document).ready(function() {
  15. var mfl = $('li.mark').clone();
  16. $('#new_kudo').parent().after(mfl);
  17. });
  18. })(window.jQuery);