SoundCloud hide reposts (Updated version)

Only see new songs in your SoundCloud stream

目前为 2024-08-25 提交的版本。查看 最新版本

// ==UserScript==
// @name SoundCloud hide reposts (Updated version)
// @namespace https://rainbowlabllc.com/
// @version 1.3
// @license MIT
// @author nov0id (modded from ABS)
// @description Only see new songs in your SoundCloud stream
// @match *://soundcloud.com/feed
// ==/UserScript==

function norepost(){
	for (let repost of document.getElementsByClassName("soundList__item")) {
		if (repost.getElementsByClassName("sc-ministats-reposts").length > 0) {
			repost.remove();
            console.log(repost);
        }
	}
}
window.addEventListener("DOMNodeInserted", norepost, false);

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址