make cursor always pixelated
This commit is contained in:
parent
deb31424e8
commit
a3c0eab392
1 changed files with 6 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
|||
// ==UserScript==
|
||||
// @name Terminal 00 Multiuser
|
||||
// @namespace https://*.angusnicneven.com/*
|
||||
// @version 20240426.1
|
||||
// @version 20240426.2
|
||||
// @description Probe with friends!
|
||||
// @author tgpholly
|
||||
// @match https://*.angusnicneven.com/*
|
||||
|
@ -36,7 +36,7 @@ if (!window.TE_ACTIVE) {
|
|||
'use strict';
|
||||
|
||||
// Make sure to change the userscript version too!!!!!!!!!!
|
||||
const USERSCRIPT_VERSION_RAW = "20240426.1";
|
||||
const USERSCRIPT_VERSION_RAW = "20240426.2";
|
||||
const USERSCRIPT_VERSION = parseInt(USERSCRIPT_VERSION_RAW.replace(".", ""));
|
||||
|
||||
if (!continueRunningScript) {
|
||||
|
@ -69,6 +69,10 @@ if (!window.TE_ACTIVE) {
|
|||
pointer-events: none;
|
||||
overflow:hidden;
|
||||
}
|
||||
|
||||
#otherCursors img {
|
||||
image-rendering: pixelated;
|
||||
}
|
||||
|
||||
@keyframes ping {
|
||||
0% {
|
||||
|
|
Loading…
Reference in a new issue