NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name RemoveGithubPreview // @version 1.0 // @description Remove Preview of Repository/Issue On Github's Home // @author Arrizal Amin // @match https://github.com/ // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; document.querySelectorAll('.border.rounded-1.p-3.my-2').forEach(node => { node.parentNode.removeChild(node); }); })();