Skip to content

Instantly share code, notes, and snippets.

@ghostdevv
Last active November 20, 2025 00:49
Show Gist options
  • Select an option

  • Save ghostdevv/3d3f349bda2731f7a62d84f23c05ff2d to your computer and use it in GitHub Desktop.

Select an option

Save ghostdevv/3d3f349bda2731f7a62d84f23c05ff2d to your computer and use it in GitHub Desktop.
Taskmaster Wiki Hide Scores userscript
// ==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