Fix Collapse Button on /r/DoctorWho (old Reddit)

Move the collapse button back where it's supposed to be on /r/DoctorWho.

  1. // ==UserScript==
  2. // @name Fix Collapse Button on /r/DoctorWho (old Reddit)
  3. // @version 0.2
  4. // @namespace https://greatest.deepsurf.us/en/users/105361-randomusername404
  5. // @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
  6. // @run-at document-start
  7. // @description Move the collapse button back where it's supposed to be on /r/DoctorWho.
  8. // @author RandomUsername404
  9. // @match https://old.reddit.com/r/doctorwho/comments/*/*/
  10. // @grant none
  11. // @icon https://b.thumbs.redditmedia.com/L9ZqY1Wmvy9qDCcxhQuoVMGlCjD6Vgfqht-5xE5NGCk.png
  12. // ==/UserScript==
  13.  
  14. $(document).ready(function() {
  15. $('.commentarea .comment a.expand').css('position', 'unset');
  16. })();