RewardNow

Disables the video that you must watch for claiming the hypixel daily reward

  1. // ==UserScript==
  2. // @name RewardNow
  3. // @namespace http://jeuxjeuxkit.tk/
  4. // @version 2
  5. // @description Disables the video that you must watch for claiming the hypixel daily reward
  6. // @author jeuxjeux20
  7. // @match https://rewards.hypixel.net/claim-reward/*
  8. // @grant none
  9. // @require http://code.jquery.com/jquery-3.2.1.slim.min.js
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14. var thingy = setInterval(function() {
  15. var youtubeVideo = YT.get($('*[id^="yt"]')[0].id);
  16. youtubeVideo.seekTo(youtubeVideo.getDuration());
  17. clearInterval(thingy);
  18. },6000);
  19. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址