Created
January 16, 2022 00:06
-
-
Save vkuprin/c006abb7714ec1641f4cbaace3c0a106 to your computer and use it in GitHub Desktop.
Quora remove authentication popup - dialog
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
const getDialog = document.getElementsByClassName( | |
'q-flex qu-alignItems--center qu-justifyContent--center qu-overflow--hidden qu-zIndex--blocking_wall', | |
); | |
const getBlur = document.getElementsByClassName( | |
'q-box qu-overflow--hidden', | |
); | |
getDialog[0].remove(); | |
getBlur[0].style.filter = 'none'; | |
getBlur[0].style.removeProperty('position'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment