🎉 欢迎访问GreasyFork.Org 镜像站!本镜像站由公众号【爱吃馍】搭建,用于分享脚本。联系邮箱📮

Greasy fork 爱吃馍镜像

Greasy Fork is available in English.

📂 缓存分发状态(共享加速已生效)
🕒 页面同步时间:2026/01/12 15:40:57
🔄 下次更新时间:2026/01/12 16:40:57
手动刷新缓存

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.

이 스크립트를 설치하려면 Tampermonkey, Greasemonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey와 같은 확장 프로그램을 설치해야 합니다.

이 스크립트를 설치하려면 Tampermonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey 또는 Userscripts와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 유저 스크립트 관리자 확장 프로그램이 필요합니다.

(이미 유저 스크립트 관리자가 설치되어 있습니다. 설치를 진행합니다!)

🚀 安装遇到问题?关注公众号获取帮助

公众号二维码

扫码关注【爱吃馍】

回复【脚本】获取最新教程和防失联地址

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

(이미 유저 스타일 관리자가 설치되어 있습니다. 설치를 진행합니다!)

🚀 安装遇到问题?关注公众号获取帮助

公众号二维码

扫码关注【爱吃馍】

回复【脚本】获取最新教程和防失联地址

// ==UserScript==
// @name         IXL Hack
// @namespace    http://tampermonkey.net/
// @version      0.2
// @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.
// @author       patrickahhh
// @match        https://www.ixl.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Function to override the pause timer functionality
    function overridePauseTimer() {
        // Overwrite the function that handles pausing the timer
        window.$x_pauseTimer = function() {
            // Do nothing to prevent pausing
        };
    }

    // Call the function to override the pause timer
    overridePauseTimer();

    // Display a confirmation message in the console
    console.log("IXL No Pause userscript activated: IXL timer will now continue uninterrupted.");

    // Track the time spent on IXL
    let startTime = Date.now(); // Get the current time when the script is executed
    let totalElapsedTime = 0; // Initialize total elapsed time

    // Function to log the total time spent on IXL
    function logTotalTimeSpent() {
        let currentTime = Date.now(); // Get the current time
        let elapsedTime = currentTime - startTime; // Calculate the elapsed time since the script started
        totalElapsedTime += elapsedTime; // Add the elapsed time to the total elapsed time
        console.log("Total time spent on IXL: " + (totalElapsedTime / 1000) + " seconds"); // Log the total time spent on IXL in seconds
        startTime = currentTime; // Update the start time for the next interval
    }

    // Call the function to log the total time spent on IXL
    logTotalTimeSpent();

    // Set an interval to log the time every 60 seconds
    setInterval(logTotalTimeSpent, 60000); // Log the time every minute

    // Function to display a message when the user interacts with IXL
    function displayInteractionMessage() {
        console.log("You are interacting with IXL. Time is being tracked."); // Log a message to indicate interaction with IXL
    }

    // Listen for mouse and keyboard events to detect user interaction
    document.addEventListener("keydown", displayInteractionMessage); // Listen for keydown events
    document.addEventListener("mousemove", displayInteractionMessage); // Listen for mousemove events
    document.addEventListener("mousedown", displayInteractionMessage); // Listen for mousedown events
})();