Created
April 16, 2025 00:43
-
-
Save renanccastro/1aebcee06219c6c5188c65a790a54960 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name New Userscript | |
// @namespace http://tampermonkey.net/ | |
// @version 2025-04-16 | |
// @description try to take over the world! | |
// @author You | |
// @match https://kumonapp.digital.kumon.com/* | |
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
function tryAgain(){ | |
if(!InkTool){ console.log("waiting for it to be ready"); setTimeout(tryAgain, 1000); return; } | |
console.log("Setting setPointerTypeTouchEnabled to true"); | |
InkTool.InkCanvasLib.setPointerTypeTouchEnabled(true) | |
InkTool.InkCanvasLib.setPointerTypeTouchEnabled = () => {} | |
} | |
tryAgain(); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment