Skip to content

Instantly share code, notes, and snippets.

View HaykoKoryun's full-sized avatar

Hayko Koryun HaykoKoryun

  • VMware
  • Yerevan, Armenia
View GitHub Profile
@HaykoKoryun
HaykoKoryun / cloudSettings
Last active May 8, 2018 14:21
Visual Studio Code Settings Sync Gist
{"lastUpload":"2018-04-09T09:32:12.017Z","extensionVersion":"v2.9.0"}
@HaykoKoryun
HaykoKoryun / script.js
Created October 2, 2020 11:46
List all files in Chrome DevTools with their paths
document.querySelectorAll('table.data tr.data-grid-data-grid-node').forEach(record => {
if(!record.querySelector('.name-column')) return;
const name = record.innerText;
const path = record.querySelector('div').innerText;
console.log(`${path}/${name}`);
});