Skip to content

Instantly share code, notes, and snippets.

@w2404
Forked from suhaotian/bilibili-auto-answer.js
Created July 19, 2023 07:25
Show Gist options
  • Save w2404/a25886b3508fb6511feca88b9841f506 to your computer and use it in GitHub Desktop.
Save w2404/a25886b3508fb6511feca88b9841f506 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);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment