Created
July 1, 2025 05:25
-
-
Save anadius/7e81fd28a58a9d42cbe6c21d240897d4 to your computer and use it in GitHub Desktop.
Art Fight - full width profile settings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Art Fight - full width profile settings | |
// @version 1 | |
// @grant none | |
// @match https://artfight.net/user/settings/profile | |
// ==/UserScript== | |
for(const column of document.querySelectorAll("#content .row > *")) { | |
column.setAttribute("class", "col-12"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment