Created
July 22, 2019 10:41
-
-
Save sempostma/9475b5171f0f4556fb29ffce40ee6668 to your computer and use it in GitHub Desktop.
Get urls from chrome debugger
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
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