Skip to content

Instantly share code, notes, and snippets.

@pcomans
Created April 28, 2020 22:57
Show Gist options
  • Save pcomans/3b2df4564199b25445f6dbd5dcd274c0 to your computer and use it in GitHub Desktop.
Save pcomans/3b2df4564199b25445f6dbd5dcd274c0 to your computer and use it in GitHub Desktop.
// ==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