Skip to content

Instantly share code, notes, and snippets.

@suhaotian
Created August 19, 2020 12:07
Show Gist options
  • Save suhaotian/3b859d8e08606087d68f35154d12a00b to your computer and use it in GitHub Desktop.
Save suhaotian/3b859d8e08606087d68f35154d12a00b to your computer and use it in GitHub Desktop.
B站注册自动答题脚本
setInterval(() => {
[].slice
.call(document.querySelectorAll(".answer-outer"))
.forEach((item, i) => {
setTimeout(() => {
item.click();
}, 1500 * i);
});
}, 6 * 1000);
@liushiqi123123
Copy link

1

@w2404
Copy link

w2404 commented Jun 13, 2023

很好用

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment