Auto comment Medals and Articles

try to take over the world!

当前为 2019-03-07 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Auto comment Medals and Articles
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description try to take over the world!
  6. // @author You
  7. // @match https://www.erepublik.com
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12.  
  13. // vote all medal posts
  14. $j('h6:contains("medal")').siblings('.post_actions').children("a:contains('Vote')").click()
  15.  
  16. // vote all comments in articles
  17. //$j('li:contains("Vote")').click();
  18.  
  19. // vote an opened article
  20. $j("div.vote_boxer a").click();
  21.  
  22. })();