Skip to content

Instantly share code, notes, and snippets.

@enxg
Last active April 3, 2022 03:03
Show Gist options
  • Save enxg/480a4c8d030bb89542143c943ca159f0 to your computer and use it in GitHub Desktop.
Save enxg/480a4c8d030bb89542143c943ca159f0 to your computer and use it in GitHub Desktop.
View Quora questions without logging in.
// ==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