SoundCloud Classic – How to Force Switch to SoundCloud Classic

soundcloud

SoundCloud has an option within it's "More…" drop down menu to switch back to classic layout.

How to always force SoundCloud Classic layout to begin with?

if it were a greasemonkey script:

@include *soundcloud.com

Best Answer

This two line of JavaScript will do it.

updated code

   var menuDropD = document.querySelector(".header__moreButton").click();
   document.querySelector(".moreMenu__classic").click();

This code will trigger a click on the dropdown menu and then the link that will take you to the old Layout.

To add the script in Greasemonkey, click on the dropdown next to Greasemonkey icon in Firefox and press "New User Script.."

Add a new script to Greasemonkey manually

Fill up the details :

enter image description here

Now click "OK", a new window may open, paste the script below the last line and Save

enter image description here

The script has been added. Go to the soundcloud homepage and you will be redirected to the old layout in seconds.