acfun后退快进(鼠标)

自用云备份

  1. // ==UserScript==
  2. // @name acfun后退快进(鼠标)
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description 自用云备份
  6. // @author You
  7. // @match https://www.acfun.cn/bangumi/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13. var ttt=1
  14. function rm(){
  15. var videoElement = $('.no-cursor')[0]
  16. videoElement.currentTime -= 5
  17. }
  18. function rmk(){
  19. var videoElement = $('.no-cursor')[0]
  20. videoElement.currentTime += 5
  21. }
  22. function rmkk(){
  23. var videoElement = $('.no-cursor')[0]
  24. if(ttt==1){videoElement.pause();ttt=0}else{videoElement.play();ttt=1}
  25. }
  26. function tt()
  27. {var a=document.getElementsByTagName("body")[0];
  28. var a22=document.createElement("li");
  29. a.appendChild(a22)
  30. var a2kk=document.createElement("a");
  31. a22.appendChild(a2kk)
  32. a2kk.innerHTML='&nbsp&nbsp↓↓'
  33. a2kk.id='biliguna1';a2kk.style.position = "fixed";a2kk.style.left = "0px";a2kk.style.top = "340px";a2kk.style.opacity=0.30;a2kk.style.fontSize='40px'
  34. a2kk.onclick=rmkk
  35. var a2k=document.createElement("a");
  36. a22.appendChild(a2k)
  37. a2k.innerHTML='&nbsp&nbsp←'
  38. a2k.id='biligunak2';a2k.style.position = "fixed";a2k.style.left = "0px";a2k.style.top = "390px";a2k.style.opacity=0.30;a2k.style.fontSize='40px'
  39. a2k.onclick=rm
  40. var a2=document.createElement("a");
  41. a22.appendChild(a2)
  42. a2.innerHTML='&nbsp&nbsp→'
  43. a2.id='biliguna3';a2.style.position = "fixed";a2.style.left = "0px";a2.style.top = "440px";a2.style.opacity=0.30;a2.style.fontSize='40px'
  44. a2.onclick=rmk
  45. };
  46.  
  47. setTimeout(tt,3000)
  48. // Your code here...
  49. })();

QingJ © 2025

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