Skip to content

Instantly share code, notes, and snippets.

@sarnobat
Last active April 14, 2021 20:38
Show Gist options
  • Save sarnobat/c48823c037b13abee84480111260afc3 to your computer and use it in GitHub Desktop.
Save sarnobat/c48823c037b13abee84480111260afc3 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name testName
// @namespace anonDeveloper
// @description This script will automagically blah blah blah
// @include *
// @match https://*/jira/browse
// ==/UserScript==
// See private file for otheradditions
if (window.location.href.match('.*jira/browse/.*')) {
setTimeout(function() {
if (document.getElementById('announcement-banner') != null) {
document.getElementById('announcement-banner').remove()
}
}, 2000);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment