IXL Hack

this prob wont work dont get angry if it doesnt. if your good at coding lmk what i can do to fix this script.

  1. // ==UserScript==
  2. // @name IXL Hack
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.2
  5. // @description this prob wont work dont get angry if it doesnt. if your good at coding lmk what i can do to fix this script.
  6. // @author patrickahhh
  7. // @match https://www.ixl.com/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. // Function to override the pause timer functionality
  15. function overridePauseTimer() {
  16. // Overwrite the function that handles pausing the timer
  17. window.$x_pauseTimer = function() {
  18. // Do nothing to prevent pausing
  19. };
  20. }
  21.  
  22. // Call the function to override the pause timer
  23. overridePauseTimer();
  24.  
  25. // Display a confirmation message in the console
  26. console.log("IXL No Pause userscript activated: IXL timer will now continue uninterrupted.");
  27.  
  28. // Track the time spent on IXL
  29. let startTime = Date.now(); // Get the current time when the script is executed
  30. let totalElapsedTime = 0; // Initialize total elapsed time
  31.  
  32. // Function to log the total time spent on IXL
  33. function logTotalTimeSpent() {
  34. let currentTime = Date.now(); // Get the current time
  35. let elapsedTime = currentTime - startTime; // Calculate the elapsed time since the script started
  36. totalElapsedTime += elapsedTime; // Add the elapsed time to the total elapsed time
  37. console.log("Total time spent on IXL: " + (totalElapsedTime / 1000) + " seconds"); // Log the total time spent on IXL in seconds
  38. startTime = currentTime; // Update the start time for the next interval
  39. }
  40.  
  41. // Call the function to log the total time spent on IXL
  42. logTotalTimeSpent();
  43.  
  44. // Set an interval to log the time every 60 seconds
  45. setInterval(logTotalTimeSpent, 60000); // Log the time every minute
  46.  
  47. // Function to display a message when the user interacts with IXL
  48. function displayInteractionMessage() {
  49. console.log("You are interacting with IXL. Time is being tracked."); // Log a message to indicate interaction with IXL
  50. }
  51.  
  52. // Listen for mouse and keyboard events to detect user interaction
  53. document.addEventListener("keydown", displayInteractionMessage); // Listen for keydown events
  54. document.addEventListener("mousemove", displayInteractionMessage); // Listen for mousemove events
  55. document.addEventListener("mousedown", displayInteractionMessage); // Listen for mousedown events
  56. })();

QingJ © 2025

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