Harem / Hentai Heroes automatic Harem money

AutoSalary in the harem for hentaiheroes.com and haremheroes.com (not test yet on haremheroes.com) give me some feedback !

  1. // ==UserScript==
  2. // @name Harem / Hentai Heroes automatic Harem money
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.0
  5. // @description AutoSalary in the harem for hentaiheroes.com and haremheroes.com (not test yet on haremheroes.com) give me some feedback !
  6. // @author Feitan
  7. // @match https://www.hentaiheroes.com/harem.html
  8. // @grant none
  9. // @include https://nutaku.haremheroes.com/harem.html
  10.  
  11. // This script will automatically recolt salary from your girls when you enter in your harem
  12. // This script is very light, the goal is reassure the users about there privacy, this script can be understand by everybody because there are only 3
  13. // Lines of code.
  14.  
  15. // Note that the script will only work on secure connexion (httpS), it can be change by removing the s or change it by * example :
  16. // KEEP IN MIND THAT I WOULD NOT RECOMMAND YOU TO CHANGE THE SECURITY OF THE CONNEXION
  17. // https://www.hentaiheroes.com/harem.html ==> http*://www.hentaiheroes.com/harem.html at line 7 or
  18. // https://nutaku.haremheroes.com/harem.html ==> http*://nutaku.haremheroes.com/harem.html at line 9
  19.  
  20. // The script tested only on Chrome with Tampermonkey, give me your feedback if you use Firefox and Greasemonkey or other combinations !
  21. // Support can be done both in french and english
  22.  
  23. // ==/UserScript==
  24. (function() {
  25. 'use strict';
  26.  
  27. var buttons = document.getElementsByClassName('blue_text_button');
  28.  
  29. for(var i = 0; i <= buttons.length; i++)
  30. buttons[i].click();
  31.  
  32.  
  33. })();