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);}' | |
); | |
})(); |
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