Last active
February 11, 2025 18:12
-
-
Save Karmalakas/c09c8bcc24cb213b3feadefc944ab8dd to your computer and use it in GitHub Desktop.
GuruShots grayscale fill gauges
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 GuruShots grayscale fill gauges | |
// @description Make all gauges on GuruShots grayscale | |
// @namespace http://karmalakas.lt/ | |
// @version 1.1.3 | |
// @author Karmalakas | |
// @updateURL https://github.com/Karmalakas/gurushots-user-scripts/raw/refs/heads/main/script/grayscale-gauges/script.user.js | |
// @downloadURL https://github.com/Karmalakas/gurushots-user-scripts/raw/refs/heads/main/script/grayscale-gauges/script.user.js | |
// @supportURL https://github.com/Karmalakas/gurushots-user-scripts/issues | |
// @match https://gurushots.com/* | |
// @run-at document-idle | |
// @grant GM_addStyle | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
GM_addStyle('' + | |
'.c-challenges-item__exposure__meter__wrapper img {filter: grayscale(1);}' | |
); | |
})(); |
Caution
This gist was moved to a separate repo and will no longer be updated
Please visit the new update URL to re-install to the latest version or wait for updates to appear on TamperMonkey
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Caution
This gist was moved to a separate repo and will no longer be updated
Please visit the new update URL to re-install to the latest version or wait for updates to appear on TamperMonkey
This script will add a grayscale filter to the shiny gauges on Gurushots website. Nothing more, nothing less..
See images bellow
This only works with TamperMonkey (or similar) extension. Supported browsers are Chrome, Firefox, Edge (maybe others too).
TamperMonkey for:
Once you have TamperMonkey installed, just go to the @downloadURL you see in a script.
If later TM fails to update script, just go to @updateURL you see in a script. This should trigger the update in a new window with TM open.
Any questions or suggestions are welcome.
If you like this script, please consider keeping me scripting
😄