- Switch devtools to detached window (click devtools settings icon, click “dock side” undock icon). Next time you can simply press Ctrl-Shift-D.
- Invoke devtools-for-devtools by pressing Ctrl-Shift-i
- Run this code to copy the URLs of all/filtered requests to clipboard:
copy(UI.panels.network._networkLogView._dataGrid._rootNode._flatNodes.map(n => n._request._url).join('\n'))
var URLs = UI.panels.network._networkLogView._dataGrid._rootNode._flatNodes.map(n => n._request._url);
copy(URLs.join('\n'));
URLs; // displays it in the console as an expandable array
原文: https://stackoverflow.com/questions/41200450/multiple-urls-copy-in-sources-network-tab