SoundCloud'da Yorumları Varsayılan Olarak Gizle


Yanıtlar:


5

1-26-15 güncellendi

Soundcloud'daki yeni ve klasik görünümdeki yorumları devre dışı bırakan bir tampermonkey / greasemonkey betiği:

// ==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

Phwd'nin yanıtı / komut dosyası da iyi çalışıyor, ancak kısa el ile şunları yapabilirsiniz:

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

Chrome ve Firefox'ta test ettim (konsolu kullanarak).

Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.