Skip to content

Instantly share code, notes, and snippets.

@SuperSpyTX
Last active May 13, 2024 04:33
Show Gist options
  • Save SuperSpyTX/fe9e8e74872adf65c62a3801dccba391 to your computer and use it in GitHub Desktop.
Save SuperSpyTX/fe9e8e74872adf65c62a3801dccba391 to your computer and use it in GitHub Desktop.
Soundcloud OneTrust SDK Page-Loading Delay Bypass
// ==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