Created
March 11, 2022 03:14
-
-
Save hayleyxyz/5a86e30783ee16158f1a0ab38f57bf25 to your computer and use it in GitHub Desktop.
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
// ==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