Kbin Move Comments below New Comment Control

On the KBin website, move the Add Comment block before all the comments

  1. // ==UserScript==
  2. // @name Kbin Move Comments below New Comment Control
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description On the KBin website, move the Add Comment block before all the comments
  6. // @author CodingAndCoffee
  7. // @match https://kbin.social/m/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=kbin.social
  9. // @grant none
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15.  
  16. const comments = document.querySelector('#comments');
  17. const commentAdd = document.querySelector('#comment-add');
  18.  
  19. comments.parentNode.insertBefore(commentAdd, comments);
  20. })();