Skip to content

Instantly share code, notes, and snippets.

@hayleyxyz
Created March 11, 2022 03:14
Show Gist options
  • Save hayleyxyz/5a86e30783ee16158f1a0ab38f57bf25 to your computer and use it in GitHub Desktop.
Save hayleyxyz/5a86e30783ee16158f1a0ab38f57bf25 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name quora bypass
// @version 1
// @grant none
// @match https://www.quora.com/*
// ==/UserScript==
document.querySelectorAll('.qu-zIndex--blocking_wall').forEach((el) => {
el.remove()
});
document.querySelectorAll('*').forEach((el) => {
const computedStyle = getComputedStyle(el);
if (computedStyle.overflow === 'hidden') {
el.style.overflow = 'auto';
}
if(computedStyle.filter.match(/blur/)) {
el.style.filter = 'none';
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment