Last active
November 20, 2025 00:49
-
-
Save ghostdevv/3d3f349bda2731f7a62d84f23c05ff2d to your computer and use it in GitHub Desktop.
Taskmaster Wiki Hide Scores userscript
This file contains hidden or 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 Taskmaster Wiki Hide Scores | |
| // @namespace Violentmonkey Scripts | |
| // @match https://taskmaster.fandom.com/wiki/Contestants | |
| // @grant none | |
| // @version 1.0 | |
| // @author - | |
| // @description 16/11/2025, 22:42:51 | |
| // @downloadURL https://gist.githubusercontent.com/ghostdevv/3d3f349bda2731f7a62d84f23c05ff2d/raw/taskmaster-wiki-hide-scores.js | |
| // @updateURL https://gist.githubusercontent.com/ghostdevv/3d3f349bda2731f7a62d84f23c05ff2d/raw/taskmaster-wiki-hide-scores.js | |
| // @homepageURL https://gist.github.com/ghostdevv/3d3f349bda2731f7a62d84f23c05ff2d | |
| // ==/UserScript== | |
| const seals = [ | |
| ...document.querySelectorAll('img[data-image-key="Gold_blank_seal.png"]'), | |
| ...document.querySelectorAll('img[data-image-key="Blank_seal.png"]') | |
| ] | |
| for (const seal of seals) { | |
| const root = seal.parentElement?.parentElement?.parentElement?.parentElement?.parentElement; | |
| root.innerHTML = ''; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment