B站自动点赞收藏

2022/11/9 15:06:11

// ==UserScript==
// @name        B站自动点赞收藏
// @namespace   Violentmonkey Scripts
// @match       *://*.bilibili.com/video/*
// @grant       none
// @version     1.0
// @author      -
// @description 2022/11/9 15:06:11
// @license MIT
// ==/UserScript==

window.onload = function() {
  // 点赞
  setTimeout(() => {
    document.querySelector(".video-like").click();
  }, 3000);
  // 收藏
  setTimeout(() => {
    document.querySelector(".video-fav").click();
  }, 3000);
  setTimeout(() => {
    document.querySelector(".fav-title").click();
  }, 5000);
  setTimeout(() => {
    document.querySelector(".submit-move").click();
  }, 5000);
}