Advertisement
xpppppppaicyber

Remove FIlter Pixels

Oct 30th, 2024 (edited)
19
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // Get the element
  2. const gameContainer = document.querySelector("#game-container.GameContainer_game-container__gT4TM.GameContainer_game-container-halloween__xkjyP");
  3.  
  4. // Remove grayscale filter by setting filter property to none
  5. if (gameContainer) {
  6.     gameContainer.style.filter = "none";
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement