You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
javascript:(function(){varcursor=prompt("Enter the cursor style you want to use:\n\nPossible values: default, pointer, crosshair, move, text, invisible, help");if(!cursor){alert("You didn't enter a cursor style.");return;}varcursorStyles=["default","pointer","crosshair","move","text","invisible","help"];if(cursorStyles.indexOf(cursor)===-1){alert("Invalid cursor style. Please choose from the following: "+cursorStyles.join(", "));return;}if(cursor==="invisible"){document.body.style.cursor="none";}else{document.body.style.cursor=cursor;}})();