Last active
May 5, 2019 10:59
-
-
Save SukkaW/009212492dd75f3c42bd76012310a9b5 to your computer and use it in GitHub Desktop.
Filter for Cloudflare Firewall Events
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
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'}}})(); |
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
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