Skip to content

Instantly share code, notes, and snippets.

@CodeBrauer
Last active February 13, 2020 10:38
Show Gist options
  • Save CodeBrauer/03b77e0bcf579e525b8e977681d563de to your computer and use it in GitHub Desktop.
Save CodeBrauer/03b77e0bcf579e525b8e977681d563de to your computer and use it in GitHub Desktop.
just paste to console. enjoy.
window.WixxURLS = "";
document.querySelectorAll('[data-src]').forEach(function(el,index) {
window.WixxURLS += el.getAttribute('data-src').replace(/\/v1\/.+/, '') + "\n"
})
document.body.innerHTML = "<textarea rows='100' cols='100'>" + window.WixxURLS + "</textarea>";
document.querySelector("textarea").select();
document.execCommand('copy');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment