Temm / Wide Instagram Pages

// ==UserScript==
// @name         Wide Instagram Pages
// @version      0.2
// @description  Make Instagram Pages wide
// @author       Temm
// @match        http*://www.instagram.com/p/*
// @grant        none
// @copyright 2021, Temm (https://openuserjs.org/users/Temm)
// @license MIT
// ==/UserScript==

(function() {
	'use strict';
	let index = window.document.styleSheets[0].ownerNode.className.includes("darkreader--fallback") ? 7 : 0;
	let sheet = window.document.styleSheets[index];
	sheet.insertRule('.Kj7h1 {max-width: inherit;}', sheet.cssRules.length);
})();