desc = Object.getOwnPropertyDescriptor(prototype, "src"); const origSet = desc.set; desc.set = exportFunction(function (url) { if (url?.includes("mparticle.js")) { this.async = false; } return origSet.call(this, url); }, window); Object.defineProperty(prototype, "src", desc); PK