arrizalamin / RemoveGithubPreview

// ==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);
    });
})();