Nascondi commenti per impostazione predefinita su SoundCloud


Risposte:


5

Aggiornato 1-26-15

Ecco uno script tampermonkey / greasemonkey che disabilita i commenti nella vista nuova e classica di Soundcloud:

// ==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");


1

Anche la risposta / script di phwd funziona bene, ma puoi abbreviarla con:

$('.player').addClass('no-comments');

Ho provato su Chrome e Firefox (usando la console).

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.