Skip to content

Instantly share code, notes, and snippets.

@ahmedazhar05
Last active September 23, 2021 15:49
Show Gist options
  • Save ahmedazhar05/ce66023c7eee280fc5ef26e5314a99eb to your computer and use it in GitHub Desktop.
Save ahmedazhar05/ce66023c7eee280fc5ef26e5314a99eb to your computer and use it in GitHub Desktop.
Bookmarklet: Unblock Quora answers without having to log in
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