Skip to content

Instantly share code, notes, and snippets.

@sempostma
Created July 22, 2019 10:41
Show Gist options
  • Save sempostma/9475b5171f0f4556fb29ffce40ee6668 to your computer and use it in GitHub Desktop.
Save sempostma/9475b5171f0f4556fb29ffce40ee6668 to your computer and use it in GitHub Desktop.
Get urls from chrome debugger
var URLs = UI.panels.network._networkLogView._dataGrid._rootNode._flatNodes.map(n => n._request._url).filter((v, i, a) => a.indexOf(v) === i)
copy(URLs.join('\n'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment