Its dangerous to go alone, take this...
Save this code out as a .html file and paste your list of images on the left hand side.
Paste in as many images as you like, I tested with 1000...
Layout:
Left Panel: input (paste your list here)
Right Panel: Image tags that you can copy paste.
Bottom Panel: Image preview, so you can snipe broken images.
Code:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Image Processor</title>
<style>
body{margin:0;padding:0;font-family: monospace;}
section:after{content:'';display:table;clear:both;}
.col1,.col2{float:left;width:100%;}
.col1{width:50%}#input{width:100%}
#input,#output{
height:400px;box-sizing:border-box;
overflow:auto;
padding:1em;border:1px solid #ccc;resize:none;
}
img{max-width:100%;}
#preview img{width:11.5%;margin:1% 0.5%;}
</style>
</head>
<body>
<section>
<div class="col1"><textarea id="input" placeholder="Paste image list here"></textarea></div>
<div class="col1" id="output">Image codes will display here</div>
<div class="col2" id="preview"></div>
</section>
<script>
window.addEventListener('load',function(){
var input = document.getElementById('input');
var output = document.getElementById('output');
var preview = document.getElementById('preview');
input.addEventListener('input',function(e){
if(e.target.value.split(/\n/).length > 0){
preview.innerHTML = '';
output.innerHTML = '';
e.target.value.split(/\n/).forEach(function(el) {
var img = document.createElement('img');
img.src = el;
output.textContent += img.outerHTML;
img.title = el;
preview.appendChild(img);
}, this);
}
},{passive:true});
},{passive:true});
</script>
</body>
</html>