NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==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);
})();