AV助手 - 支持私人功能定制,通用草榴社区 | 91porn | ……

功能介绍:1、草榴社区移除因广告拦截等待10s,无需手动点击<同意加载>提示 2、移除91porn广告,静音自动循环播放,新标签页打开视频

  1. // ==UserScript==
  2. // @name AV助手 - 支持私人功能定制,通用草榴社区 | 91porn | ……
  3. // @namespace https://www.1024net.tech/
  4. // @namespace https://www.lovemake.love/
  5. // @version 2024.08.08.080000
  6. // @description 功能介绍:1、草榴社区移除因广告拦截等待10s,无需手动点击<同意加载>提示 2、移除91porn广告,静音自动循环播放,新标签页打开视频
  7. // @author Kay
  8. // @match *://*/*
  9. // @require https://mirrors.sustech.edu.cn/cdnjs/ajax/libs/jquery/4.0.0-beta.2/jquery.min.js
  10. // @grant none
  11. // @icon https://aimg8.dlssyht.cn/u/1533835/ueditor/image/767/1533835/1633159205592221.png
  12. // ==/UserScript==
  13.  
  14. (function () {
  15. 'use strict';
  16.  
  17. // Your code here...
  18. const url = location.href;
  19. let style = `<style id="stylex"></style>`;
  20. $("body").append(style);
  21. if (url.indexOf("https://t66y.com") > -1 && url != "https://t66y.com/") {
  22. let a = setTimeout(() => { }, 0);
  23. for (let i = 0; i < a; i++) { clearTimeout(i); }
  24. $("a:contains(同意加載)").click();
  25. let b = `
  26. br+.tips,
  27. tr.do_not_catch th:last-child br {
  28. display: none;
  29. }
  30. `;
  31. $("#stylex").html(b);
  32. }
  33. else if (url.indexOf("https://91porn.com") > -1 && url != "https://91porn.com/") {
  34. $("#wrapper").prev("div").remove();
  35. $("#row iframe").remove();
  36. let a = $("#player_one source").attr("src");
  37. $(".video-container").prepend("<video style='width:100%; max-height:calc(100vh - 300px);' controls autoplay loop muted><source src=" + a + "></video>");
  38. $("#player_one").remove();
  39. $(".video-title").parent().attr("target", "_blank");
  40. let b = `
  41. body,
  42. .video-container {
  43. background-color: black !important;
  44. }
  45.  
  46. div:has(+ #wrapper):not(.navbar),
  47. *:has(~ .video-container):not(h4),
  48. #row iframe,
  49. .ad_img,
  50. #player_one {
  51. display: none !important;
  52. }
  53. `;
  54. $("#stylex").html(b);
  55. }
  56. })();
  57. /*2024.08.08.080000 - Line : 57*/