Last active
July 3, 2024 01:50
-
-
Save rudiedirkx/43149bbf899f9feeded2 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
javascript: | |
performance.setResourceTimingBufferSize(5000); | |
performance.getEntriesByType('resource').some(function(res) { | |
if (res.name.slice(-5) == '-1.ts') { | |
console.log(res.name); | |
return prompt('COPY THIS URL', res.name), true; | |
} | |
}); | |
void(0); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment