Last active
April 6, 2024 01:17
-
-
Save TheLouisHong/ad9bdde054cac63ca40e09b04b33df48 to your computer and use it in GitHub Desktop.
Suno.ai Widen UI
This file contains 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 Suno.ai Widen UI | |
// @version 2024-04-05 | |
// @description Widens suno.ai's song generation panel | |
// @author Louis Hong | |
// @match *://app.suno.ai/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=suno.ai | |
// @grant GM_addStyle | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
let customCss = | |
` | |
div.chakra-stack.css-1kdca34 { | |
width: 720px !important; | |
max-width: 40% !important; | |
} | |
nav.css-1jiv1el { | |
width: 100px !important; | |
} | |
`; | |
GM_addStyle(customCss); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment