답변:
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");
현재 플러그인을 사용하거나 댓글 비활성화 버튼을 수동으로 클릭하는 것보다 더 나은 해결책은 없습니다.
또는이 사용자 스크립트 SoundCloud-주석 숨기기를 사용할 수 있습니다
비슷하지만 SoundCloud 가 작동하지 않습니다.