Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save renanccastro/1aebcee06219c6c5188c65a790a54960 to your computer and use it in GitHub Desktop.
Save renanccastro/1aebcee06219c6c5188c65a790a54960 to your computer and use it in GitHub Desktop.
// ==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