달력

102024  이전 다음

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31

'전체 글'에 해당되는 글 218건

  1. 2024.09.23 유튜브 구독 일괄 취소 4

유튜브 구독 화면에서 디버그 모드 - 콘솔

 

const likedVideoElements = document.querySelectorAll('ytd-channel-renderer.ytd-expanded-shelf-contents-renderer .yt-spec-button-shape-next__secondary-icon'); 
for (let i=0; i<likedVideoElements.length; i++) {
  setTimeout(() => { likedVideoElements[i].click(); 
    setTimeout(() => { 
      document.querySelectorAll('yt-formatted-string.ytd-menu-service-item-renderer')[2].click(); 
      document.querySelector('yt-button-renderer.style-scope.yt-confirm-dialog-renderer button[aria-label="구독 취소"]').click(); 
    }, 200); 
  }, i * 300); 
}

Posted by 타카스 류지
|