var imglink = [];
$('img').each(function(i, x){
src = $(x).attr('src');
if(src.indexOf('http') == -1){
if(imglink.includes(src) == false){
imglink.push(src);
}
}});
function changeImage(prev, result){
$('img').each(function(i, x){
src = $(x).attr('src');
prevsrc = prev.replace('https://app.roll20.net', '');
if(src == prevsrc){
$(x).attr('src', result);
}});
}
var imglink_result = [];
imglink.map(function(x, i){
imglink_result[i] = 'https://app.roll20.net' + x;
})
consoleText = '절취선 이후의 코드를 콘솔창에 복사합니다. \n왼쪽 주소에 차례대로 접속하셔서 주소창의 주소를 오른쪽의 <이미지 주소> 부분을 수정해주세요. \n따옴표 안에 바로 주소가 들어가도록 수정해주시면 OK!\n 우클릭 -> 새 탭으로 열기 (Open In New Tab) 추천 \n ------------ \n';
imglink.map(function(x, i){
consoleText = consoleText + "changeImage('" + imglink_result[i] + "', '<이미지 주소>'); \n";
});
console.log(consoleText);