SoundCloud – How to Hide Comments by Default

soundcloud

Is there a way I can hide comments by default on SoundCloud?

I saw the plugin for Chrome but I don't always use Chrome. Is there a better solution than that?

Best Answer

Updated 1-26-15

Here's a tampermonkey/greasemonkey script that disables comments in Soundcloud new and classic view:

// ==UserScript==
// @name           SoundCloud - Hide comments
// @description    Hides comments on tracks
// @include        http*://soundcloud.com/*
// @require        http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js
// ==/UserScript==

$("<style type='text/css'>"+ 
  ".waveformComments{ display:none !important;}" + 
  ".commentBubble__wrapper{ display:none !important;}" + 
  ".commentPopover{ display:none !important;}" + 
  ".waveform__layer.waveform__scene canvas:nth-child(2){ opacity:0 !important;}" +
  "</style>").appendTo("head");