Skip to content

Instantly share code, notes, and snippets.

@SukkaW
Last active May 5, 2019 10:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SukkaW/009212492dd75f3c42bd76012310a9b5 to your computer and use it in GitHub Desktop.
Save SukkaW/009212492dd75f3c42bd76012310a9b5 to your computer and use it in GitHub Desktop.
Filter for Cloudflare Firewall Events
javascript:(function(){var cfAllowEl=document.querySelectorAll('td[data-label="Action Taken"]');for(let i of cfAllowEl){if(i.innerHTML==='allow'){i.parentNode.style.display='none'}}})();
var cfAllowEl = document.querySelectorAll('td[data-label="Action Taken"]');
for (let i of cfAllowEl) {
if (i.innerHTML === 'allow') {
i.parentNode.style.display = 'none';
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment