Skip to content

Instantly share code, notes, and snippets.

@CairX
Last active December 14, 2021 09:38
Show Gist options
  • Save CairX/6207ee1bcd1e1959dffc4b04ac2cb442 to your computer and use it in GitHub Desktop.
Save CairX/6207ee1bcd1e1959dffc4b04ac2cb442 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name The Opinion Machine
// @description Hide content as a reminder of the opinion machine.
// @namespace https://gist.github.com/CairX
// @version 0.1
// @grant none
// @include https://www.reddit.com/*
// @include https://news.ycombinator.com/*
// @run-at document-end
// ==/UserScript==
const body = document.querySelector("body");
body.innerHTML = "";
body.style.background = "#000";
document.body.appendChild(message);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment