Commentcloud

By Intars Students Last update Jan 2, 2012 — Installed 640 times.
// ==UserScript==
// @name           Commentcloud
// @namespace      Commentcloud
// @include        http://soundcloud.com/*
// ==/UserScript==

function commentclound(){
	$(document).ready(function(){

		$(".comments-toggle").each(function(){
			$(this).trigger("click");
		});

	});
}


var s = document.createElement("script");
s.innerHTML = commentclound + " commentclound();";
document.body.appendChild(s);