Ẩn bình luận theo mặc định trên SoundCloud


Câu trả lời:


5

Cập nhật 1-26-15

Đây là tập lệnh tampermonkey / greasemonkey để tắt nhận xét trong chế độ xem cổ điển và mới của 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

Câu trả lời / tập lệnh của phwd cũng hoạt động tốt, nhưng bạn có thể rút ngắn nó bằng:

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

Tôi đã thử nghiệm trong Chrome và Firefox (sử dụng bảng điều khiển).

Khi sử dụng trang web của chúng tôi, bạn xác nhận rằng bạn đã đọc và hiểu Chính sách cookieChính sách bảo mật của chúng tôi.
Licensed under cc by-sa 3.0 with attribution required.