Bodil / Instagram Sidebar Remover

// ==UserScript==
// @name         Instagram Sidebar Remover
// @namespace    https://openuserjs.org/users/Bodil
// @version      1.2
// @description  Removes the sidebar from the Instagram web UI, increasing the size of images in the feed accordingly.
// @author       Bodil
// @copyright    Copyright 2020 Bodil Stokke (https://openuserjs.org/users/Bodil)
// @locale       en
// @match        https://www.instagram.com/*
// @license      GPL-3.0-or-later; http://www.gnu.org/licenses/gpl-3.0.txt
// @grant        GM_addStyle
// @run-at       document-idle
// ==/UserScript==

// ==OpenUserJS==
// @author Bodil
// ==/OpenUserJS==

GM_addStyle(`
main[role="main"] > section > div:first-child {
    max-width: 100% !important;
}

main[role="main"] > section > div:nth-child(3) {
    display: none;
}
`);