bilibili_jumper

try to take over the world!

目前為 2020-12-10 提交的版本,檢視 最新版本

  1. // ==UserScript==
  2. // @name bilibili_jumper
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.3
  5. // @description try to take over the world!
  6. // @author You
  7. // @match https://www.bilibili.com/video/*
  8. // @grant none
  9. // @require https://code.jquery.com/jquery-1.12.4.min.js
  10. // @description bilibili播放完视频后的5秒跳转让我等的郁闷,本脚本可以直接取消,方便你看完视频就点赞。
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15. setTimeout(function(){
  16. var md=$("video:nth-child(1)")[0]
  17. md.addEventListener("ended",function(){ document.getElementsByClassName("bilibili-player-electric-panel-jump-content")[0].click(); })
  18. }, 10000);
  19. /*$(document).ready(function () {
  20. var md=$("video:nth-child(1)")[0]
  21. md.addEventListener("ended",function(){ document.getElementsByClassName("bilibili-player-electric-panel-jump-content")[0].click(); })
  22. })*/
  23.  
  24. // Your code here...
  25. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址