Skip to content

Instantly share code, notes, and snippets.

@rudiedirkx
Last active November 14, 2015 22:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rudiedirkx/43149bbf899f9feeded2 to your computer and use it in GitHub Desktop.
Save rudiedirkx/43149bbf899f9feeded2 to your computer and use it in GitHub Desktop.
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