Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save anadius/7e81fd28a58a9d42cbe6c21d240897d4 to your computer and use it in GitHub Desktop.
Save anadius/7e81fd28a58a9d42cbe6c21d240897d4 to your computer and use it in GitHub Desktop.
Art Fight - full width profile settings
// ==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