FXP Like Script

FXP Like Script.

  1. // ==UserScript==
  2. // @name FXP Like Script
  3. // @namespace http://tampermonkey.net/
  4. // @version 6.9
  5. // @description FXP Like Script.
  6. // @author Mystikal
  7. // @match https://www.fxp.co.il/*
  8. // @grant none
  9. // ==/UserScript==
  10. (function() {
  11. 'use strict';
  12. // Your code here...
  13. })();
  14. var object = document.getElementsByClassName('addlike');
  15. var i = 0;
  16. while (i < object.length)
  17. {
  18. object[i].click();
  19. i++;
  20. }