Last active
September 23, 2021 15:49
-
-
Save ahmedazhar05/ce66023c7eee280fc5ef26e5314a99eb to your computer and use it in GitHub Desktop.
Bookmarklet: Unblock Quora answers without having to log in
This file contains 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 m = document.querySelector('.qu-zIndex--alert'); | |
if (m) { | |
m.style.display = 'none'; | |
m.nextElementSibling.style.overflow = 'auto'; | |
m.nextElementSibling.style.filter = 'none'; | |
} else { | |
var e = document.querySelector('#root .q-box.qu-overflow--hidden'); | |
document.querySelector('.qu-zIndex--blocking_wall').style.display = e.style.filter = 'none'; | |
e.style.overflow = 'auto'; | |
} | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment