Skip to content

Instantly share code, notes, and snippets.

@Karmalakas
Last active February 11, 2025 18:12
Show Gist options
  • Select an option

  • Save Karmalakas/dd3e9d1744a67dd6fd2272c652bbea66 to your computer and use it in GitHub Desktop.

Select an option

Save Karmalakas/dd3e9d1744a67dd6fd2272c652bbea66 to your computer and use it in GitHub Desktop.
Mark challenge when boost is available
// ==UserScript==
// @name GuruShots boost notifier
// @description Mark challenge when boost is available
// @namespace http://karmalakas.lt/
// @version 1.1.1
// @author Karmalakas
// @updateURL https://github.com/Karmalakas/gurushots-user-scripts/raw/refs/heads/main/script/boost-notifier/script.user.js
// @downloadURL https://github.com/Karmalakas/gurushots-user-scripts/raw/refs/heads/main/script/boost-notifier/script.user.js
// @supportURL https://github.com/Karmalakas/gurushots-user-scripts/issues
// @match https://gurushots.com/*
// @run-at document-idle
// ==/UserScript==
(function() {
'use strict';
var mutationObserver = window.MutationObserver || window.WebKitMutationObserver || window.MozMutationObserver;
function process() {
var buttons = document.querySelectorAll(
'app-active-challenge-action-button-component .blink[class^="boost"],app-active-challenge-action-button-component .blink[class*=" boost"]'
);
if (!buttons.length) {
return;
}
for (var i = 0; i < buttons.length; i++) {
processButton(buttons[i]);
}
}
function processButton(button) {
var challengeHolder = button.closest('challenges-item').style['boxShadow'] = '0 0 0 7px rgba(151,255,151,0.75)';
}
if (mutationObserver) {
var body = document.querySelector('body');
if (!body) {
return;
}
(new mutationObserver(process)).observe(body, {
'childList': true,
'subtree': true
});
}
})();
@Karmalakas
Copy link
Author

Will do πŸ™‚ Just need to get the boost myself and be available to code at that time πŸ˜…

Thanks for letting me know πŸ™

@Karmalakas
Copy link
Author

@Samoiedo77, script updated to v1.1.0 πŸ˜‰

@Samoiedo77
Copy link

Samoiedo77 commented Jun 5, 2024

Thanks man! It works like a charm! πŸ™πŸΌ

@Karmalakas
Copy link
Author

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