Created
September 2, 2020 12:19
-
-
Save InJeCTrL/bcf3d860bd970805fd1ca6f4e345bc4f to your computer and use it in GitHub Desktop.
Bilibili动态自动点赞
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 在他人动态主页中使用 | |
| var l = $(".single-button.c-pointer.p-rel"); | |
| for(var i = 0; i < l.length; ++i){ | |
| if(l[i].children[0].children[0].className != "custom-like-icon zan-hover"){ | |
| l[i].click(); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment