FxP Like bot

FxP Auto Liker + Auto page mover

  1. // ==UserScript==
  2. // @name FxP Like bot
  3. // @namespace http://tampermonkey.net/
  4. // @version 3.0.2
  5. // @description FxP Auto Liker + Auto page mover
  6. // @copyright 2016+, DaCurse0
  7. // @match https://www.fxp.co.il/showthread.php?*
  8. // @grant none
  9. // ==/UserScript==
  10. (function() {
  11. 'use strict';
  12.  
  13. var spans = document.getElementsByTagName("span");
  14. for(var i = 0; i < spans.length; i++) {
  15. if(spans[i].getAttribute('onclick') == "makelike(this.id);") {
  16. spans[i].click();
  17. console.log("Liked");
  18. }
  19. }
  20. document.getElementsByClassName('sp_show showth-next-left')[0].click()
  21. })();