Skip to content

Instantly share code, notes, and snippets.

View mlcdf's full-sized avatar

Maxime Le Conte des Floris mlcdf

View GitHub Profile
@mlcdf
mlcdf / unhide-all-reddit.js
Last active August 15, 2020 09:40
Unhide or unsave links on Reddit
// Tested on Firefox.
// Go to https://old.reddit.com/user/<username>/hidden
// Open your browser console and run the following code:
function eventFire(el, etype) {
if (el.fireEvent) {
el.fireEvent('on' + etype);
} else {
var evObj = document.createEvent('Events');
evObj.initEvent(etype, true, false);