SoundCloud에서 기본적으로 댓글 숨기기


답변:


5

1-26-15 업데이트

Soundcloud의 새롭고 클래식 한보기에서 주석을 비활성화하는 tampermonkey / greasemonkey 스크립트는 다음과 같습니다.

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

5

현재 플러그인을 사용하거나 댓글 비활성화 버튼을 수동으로 클릭하는 것보다 더 나은 해결책은 없습니다.

또는이 사용자 스크립트 SoundCloud-주석 숨기기를 사용할 수 있습니다

비슷하지만 SoundCloud 가 작동하지 않습니다.


1

phwd의 답변 / 스크립트도 잘 작동하지만 다음과 같이 단축 할 수 있습니다.

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

Chrome 및 Firefox에서 테스트했습니다 (콘솔 사용).

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.