TikTok에서 좋아요 제거 자동화
7030 단어 tiktoktutorialautomatejavascript
JavaScript 코드로 좋아요 제거
아이디어는 간단합니다. 좋아요 버튼과 화살표 버튼을 배치하여 다음 비디오로 스크롤한 다음 좋아요 버튼과 스크롤 버튼의 클릭을 중간에 배치하는 루프를 만듭니다.
코드 작성
이 경우에는 두 개의 매개변수를 받는 익명 함수를 사용할 것입니다. 하나는 다음 동영상으로 이동하기 위한 대기 시간이고 두 번째는 좋아요가 제거될 동영상 수를 나타내는 숫자입니다. 기본적으로 이것은 -1입니다. 무한대와 같습니다.
코드는 다음과 같습니다.
((timeout, limit = -1) => {
const likeButton = document.querySelector('span[data-e2e="browse-like-icon"]').parentElement
const scrollButton = document.querySelector('button[data-e2e="arrow-right"]')
if (likeButton && scrollButton) {
let i = 1, interval = setInterval(() => {
likeButton.click()
setTimeout(() => scrollButton.click(), 300)
if (i++ === limit) clearInterval(interval)
}, timeout * 1000)
}
})(1) // parameters are passed here, which are the timeout and the likes limit, which by default is infinite.
코드 실행
You will need to have a computer or laptop nearby, as it is necessary to use the browser console to run the script.
TikTok에서 여러 좋아요를 신속하고 자동으로 제거하려면 아래 단계를 따르십시오.
코드를 복사하여 콘솔에 붙여넣고 Enter 키를 누릅니다.
((timeout, limit = -1) => {
const likeButton = document.querySelector('span[data-e2e="browse-like-icon"]').parentElement
const scrollButton = document.querySelector('button[data-e2e="arrow-right"]')
if (likeButton && scrollButton) {
let i = 1, interval = setInterval(() => {
likeButton.click()
setTimeout(() => scrollButton.click(), 300)
if (i++ === limit) clearInterval(interval)
}, timeout * 1000)
}
})(1) // -> (timeout in seconds, limit)
예시:
결론
이 코드는 오늘부터 작동하며 TikTok 웹 애플리케이션의 다음 업데이트에서 깨질 수 있지만 그런 일이 발생하면 댓글에 남겨둘 수 있습니다. 이 기사를 업데이트하려고 합니다.
지식이 있다면 html에서 두 버튼의 요소를 가져오는 방법을 변경하고 연습할 수 있지만 이를 수정하면 모든 것이 완벽하게 작동할 것입니다.
And remember that the timeout cannot be less than one second. 👀
Reference
이 문제에 관하여(TikTok에서 좋아요 제거 자동화), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/frankalvarez/automate-the-removal-of-likes-in-tiktok-4oic텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)