Skip to content

Instantly share code, notes, and snippets.

@NullDev
Last active June 8, 2022 18:12
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NullDev/ebfb1bf1f11f95f45fe3e76c4ffc6bf9 to your computer and use it in GitHub Desktop.
Save NullDev/ebfb1bf1f11f95f45fe3e76c4ffc6bf9 to your computer and use it in GitHub Desktop.
Anti Cursor Change. Click "raw" to install
// ==UserScript==
// @name Anti Cursor Change
// @namespace NullDev
// @version 0.1
// @description Enforces default cursor style on all websites
// @author NullDev
// @match *
// @icon https://images.pling.com/cache/400x400/img/00/00/47/77/78/1538515/82a44a0c5f553ced10a4faae866093786ae516770da1a7e69f8458e1c4f05637c2e3.png
// @grant none
// ==/UserScript==
(() => (document.body.innerHTML += "<style> * { cursor: unset !important; } </style>"))();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment