Last active
May 13, 2024 04:33
-
-
Save SuperSpyTX/fe9e8e74872adf65c62a3801dccba391 to your computer and use it in GitHub Desktop.
Soundcloud OneTrust SDK Page-Loading Delay Bypass
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 OneTrust SDK Delay Bypass | |
// @version 2024-05-12 | |
// @author SuperSpyTX | |
// @match https://soundcloud.com/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=soundcloud.com | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
var handler = { | |
get(target, prop, assign) { | |
return {}; | |
} | |
}; | |
window.OneTrust = new Proxy({}, handler); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment