Last active
June 19, 2026 11:41
-
-
Save ojczeo/01e492e7cf6a0e39bc9c8e1ecc39d119 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Soundcloud DeBlur | |
| // @namespace http://tampermonkey.net/ | |
| // @version 2026-06-19 | |
| // @description Removes blur on the SoundCloud | |
| // @author ojczeo | |
| // @match *://*.soundcloud.com/* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=soundcloud.com | |
| // @grant none | |
| // ==/UserScript== | |
| (function() { | |
| 'use strict'; | |
| // Function to remove the 'blur' parameter from image URLs | |
| function removeBlurParams() { | |
| let els = document.querySelectorAll('[class*="Blur"]') | |
| els.forEach(function (el) { | |
| el.setAttribute('class', ''); | |
| }); | |
| } | |
| // Run the function once the page is loaded | |
| window.addEventListener('load', removeBlurParams); | |
| // Optional: Run the function again if the page content is dynamically loaded (e.g., with AJAX) | |
| const observer = new MutationObserver(removeBlurParams); | |
| observer.observe(document.body, { childList: true, subtree: true }); | |
| const style = document.createElement('style'); | |
| style.type = 'text/css'; | |
| style.innerHTML = ` | |
| [class*="mui-"] { | |
| backdrop-filter: none !important; | |
| -webkit-backdrop-filter: none !important; | |
| } | |
| `; | |
| document.head.appendChild(style); | |
| })(); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment