FxP Add DEELTE Bot

Adds quotes

  1. // ==UserScript==
  2. // @name FxP Add DEELTE Bot
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Adds quotes
  6. // @copyright 2016+, LOL
  7. // @match https://www.fxp.co.il/showthread.php?*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. var elems = document.getElementsByTagName('input');
  15. for(i = 0; i < elems.length; i++) {
  16.  
  17. if(elems[i].id.includes('post_imod_checkbox')) {
  18. elems[i].click();
  19. }
  20. }
  21. document.getElementsByClassName('sp_show showth-next-left')[0].click()
  22.  
  23. })();