Last active
April 3, 2022 03:03
-
-
Save enxg/480a4c8d030bb89542143c943ca159f0 to your computer and use it in GitHub Desktop.
View Quora questions without logging 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
// ==UserScript== | |
// @name Quora No Login | |
// @namespace http://github.com/RedS-DEV | |
// @version 1.0 | |
// @description View Quora questions without logging in. | |
// @author github.com/RedS-DEV | |
// @match https://www.quora.com/* | |
// @grant none | |
// ==/UserScript== | |
/* | |
It waits for page to load so it can take a little bit. I don't know what can I do to make it faster. | |
Click "Raw" to install. | |
Needs TamperMonkey or GreaseMonkey to work. | |
*/ | |
(function() { | |
'use strict'; | |
window.addEventListener('load', function() { | |
try { | |
document.querySelector("#root > div > div > div.q-flex.qu-alignItems--center.qu-justifyContent--center.qu-overflow--hidden").remove() | |
document.querySelector("#root > div > div > div").style.removeProperty("filter"); | |
} catch(e) { | |
console.log(e) | |
} | |
}, false); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment