Last active
June 8, 2022 18:12
-
-
Save NullDev/ebfb1bf1f11f95f45fe3e76c4ffc6bf9 to your computer and use it in GitHub Desktop.
Anti Cursor Change. Click "raw" to install
This file contains 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 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