Created
April 28, 2020 22:57
-
-
Save pcomans/3b2df4564199b25445f6dbd5dcd274c0 to your computer and use it in GitHub Desktop.
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 Sentry.io - highlight run_id | |
// @namespace Violentmonkey Scripts | |
// @match https://sentry.io/* | |
// @grant none | |
// @version 1.0 | |
// @author philipp | |
// @description 4/21/2020, 2:59:11 PM | |
// ==/UserScript== | |
setTimeout(function () { | |
Array.from(document.querySelectorAll('span[class*="-PillName"]')).find( | |
(pill) => { | |
return pill.textContent == "run_id"; | |
} | |
).style.backgroundColor = "red"; | |
}, 5000); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment