ar

ar


document.querySelectorAll('.expand_image').forEach(img => {

  const url = img.getAttribute('onclick')?.match(/expand_local\('[^']*','([^']*)'/)?.[1];

  url && img.setAttribute('href', url);

});


const posts = document.querySelectorAll('.post');

if (posts.length > 1) {

  const firstComment = posts[1].querySelector('.post_comment');

  firstComment && [...posts].slice(1).flatMap(post => [...post.querySelectorAll('.post_image_block')]).forEach(block => firstComment.appendChild(block));

}



Вставить как закладку:

javascript:document.querySelectorAll('.expand_image').forEach(img => { const url = img.getAttribute('onclick')?.match(/expand_local\(%27[^%27]*%27,%27([^%27]*)%27/)?.[1]; url && img.setAttribute(%27href%27, url);});const posts = document.querySelectorAll(%27.post%27);if (posts.length > 1) { const firstComment = posts[1].querySelector(%27.post_comment%27); firstComment && [...posts].slice(1).flatMap(post => [...post.querySelectorAll(%27.post_image_block%27)]).forEach(block => firstComment.appendChild(block));}

Tab Save
https://chromewebstore.google.com/detail/tab-save/lkngoeaeclaebmpkgapchgjdbaekacki

Report Page