Skip to content

Instantly share code, notes, and snippets.

@MasFlam
Created June 10, 2022 23:43
Show Gist options
  • Save MasFlam/11b1bbdfa2701b2b7c895bace1e6300d to your computer and use it in GitHub Desktop.
Save MasFlam/11b1bbdfa2701b2b7c895bace1e6300d to your computer and use it in GitHub Desktop.
Tampermonkey/whatever else userscript for satori sigma grinders
// ==UserScript==
// @name Satori Sigma
// @namespace https://masflam.com
// @version 21.37
// @description satori grind
// @author MasFlam
// @match *://satori.tcs.uj.edu.pl/*
// @icon https://satori.tcs.uj.edu.pl/files/satori_logo.png
// @grant none
// ==/UserScript==
(function() {
for (const img of document.getElementsByTagName('img')) {
if (img.src.endsWith('satori_banner.png')) {
img.src = 'https://masflam.com/static/satorigma.png';
}
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment