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

image image

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