Skip to content

Instantly share code, notes, and snippets.

@Karmalakas
Last active April 5, 2024 06:11
Show Gist options
  • Save Karmalakas/c09c8bcc24cb213b3feadefc944ab8dd to your computer and use it in GitHub Desktop.
Save Karmalakas/c09c8bcc24cb213b3feadefc944ab8dd to your computer and use it in GitHub Desktop.
GuruShots grayscale fill gauges
// ==UserScript==
// @name GuruShots grayscale fill gauges
// @description Make all gauges on GuruShots grayscale
// @namespace http://karmalakas.lt/
// @version 1.1.0
// @author Karmalakas
// @updateURL https://gist.github.com/Karmalakas/c09c8bcc24cb213b3feadefc944ab8dd/raw/GS_Grayscale_gauges.user.js
// @downloadURL https://gist.github.com/Karmalakas/c09c8bcc24cb213b3feadefc944ab8dd/raw/GS_Grayscale_gauges.user.js
// @supportURL https://gist.github.com/Karmalakas/c09c8bcc24cb213b3feadefc944ab8dd
// @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);}'
);
})();
@Karmalakas
Copy link
Author

Karmalakas commented Mar 30, 2024

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 Keep me scripting 😄

@Karmalakas
Copy link
Author

image image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment