您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Prevents myPOS from redirecting you out of their dashboard
// ==UserScript== // @name myPOS Timer Bypass // @namespace https://gitlab.com/user890104 // @version 2025-08-07 // @author Vencislav Atanasov // @description Prevents myPOS from redirecting you out of their dashboard // @match https://merchant.mypos.com/*/account // @connect self // @grant GM_xmlhttpRequest // @grant unsafeWindow // @icon https://www.google.com/s2/favicons?sz=64&domain=mypos.com // @license MIT // ==/UserScript== (function() { 'use strict'; unsafeWindow.addEventListener('beforeunload', e => e.preventDefault()); setInterval(function() { GM_xmlhttpRequest({ method: 'POST', url: 'https://merchant.mypos.com/bg/account/api/accounts/transactions', }); }, 30 * 1000); })();