蒸汽夏卖 - 自动探索

自动探索下一个项目。

  1. // ==UserScript==
  2. // @name 蒸汽夏卖 - 自动探索
  3. // @namespace moe.jixun.auto-queue
  4. // @version 1.01
  5. // @description 自动探索下一个项目。
  6. // @author Jixun.Moe <https://jixun.moe/>
  7. // @include http://store.steampowered.com/app/*
  8. // @grant none
  9. // @run-at document-start
  10. // ==/UserScript==
  11.  
  12. /* jshint esnext: true */
  13.  
  14. window.addEventListener('DOMContentLoaded', function() {
  15. var queue_next = document.getElementsByClassName('next_in_queue_content');
  16. if (queue_next.length > 0) {
  17. let time = 10000 + (5000 * Math.random());
  18. console.info('Wait..');
  19. setTimeout(function () {
  20. queue_next[0].click();
  21. }, time);
  22. }
  23. }, false);