Sleazy Fork is available in English.

yimuhe

1.去除javlibrary详情页面中下载url的重定向;高亮yimuhe的下载链接

Per 19-03-2021. Zie de nieuwste versie.

  1. // ==UserScript==
  2. // @name yimuhe
  3. // @namespace https://greasyfork.org/zh-CN/scripts/38740-yimuhe
  4. // @version 1.1.7
  5. // @description 1.去除javlibrary详情页面中下载url的重定向;高亮yimuhe的下载链接
  6. // 2.破坏torrentkitty的脚本变量引用. 原先l8l1X变量是引用window,然后给加定时器,不停地添加页面的mousedown事件,导致鼠标点击任何地方都会跳转到广告页面
  7. // 3.给141jav每个车牌号后面加上复制按钮;添加 在JavLib中查询 链接
  8. // @author You
  9. // @include http://*.javlib.com/*
  10. // @include http*:/*.torrentkitty.*/*
  11. // @include http*://*.b49t.com/*
  12. // @include http*://*.f50q.com/*
  13. // @include http*://*.141jav.com/*
  14. // @include http*://*.javdb7.com/*
  15.  
  16. // @grant none
  17. // @run-at document-end
  18. // ==/UserScript==
  19.  
  20.  
  21. (function () {
  22. var javLibDomain="f50q";
  23. var javLibUrl="https://www."+javLibDomain+".com";
  24.  
  25. execute(javLibDomain+"|javlib.com",function(location){
  26. console.info("1.去除javlibrary详情页面中下载url的重定向;高亮yimuhe的下载链接");
  27. $.each($("a[href^='redirect.php?url']"),function(index,a){
  28. var origin = location.origin;
  29. a.href = decodeURIComponent(a.href.replace(origin+"/cn/redirect.php?url=",""));
  30.  
  31. a.text = a.text + " " + a.href + " ";
  32. if(a.href.includes("yimuhe")){
  33. $(a).parentsUntil("tr").closest('.t').css('background-color', '#6B6C83');
  34. a.style='font-size:40px;';
  35. }else{
  36. a.style='font-size:20px;';
  37. }
  38. });
  39. });
  40.  
  41. execute("torrentkitty",function(location){
  42. console.info("2.破坏torrentkitty的脚本变量引用. 原先l8l1X变量是引用window,然后给加定时器,不停地添加页面的mousedown事件,导致鼠标点击任何地方都会跳转到广告页面.");
  43. window.l8l1X=1;
  44. });
  45.  
  46. execute("141jav",function(location){
  47. console.info("3.给141jav每个车牌号后面加上复制按钮;添加 在JavLib中查询 链接.");
  48. document.querySelectorAll('h5.title.is-4.is-spaced > a').forEach(function(element,index){
  49. var chePai=element.innerText.trim();
  50.  
  51. var copyButton = document.createElement('button');
  52. copyButton.appendChild(document.createTextNode('复 制'));
  53. element.parentElement.appendChild(copyButton);
  54. copyButton.onclick=function(){
  55. copyToClipboard(chePai);
  56. };
  57.  
  58. var openHref=document.createElement('a');
  59. openHref.href=javLibUrl+"/cn/vl_searchbyid.php?keyword="+chePai;
  60. openHref.target="_blank";
  61. openHref.innerText="在JavLib中查询";
  62. element.parentElement.appendChild(openHref);
  63. });
  64. });
  65.  
  66. execute("javdb7",function(location){
  67. console.info("4.给javdb添加 在JavLib中查询 链接.");
  68. document.querySelectorAll('body > section > div > div.movie-info-panel > div > div:nth-child(2) > nav > div.panel-block.first-block > a').forEach(function(element,index){
  69. var chePai=element.getAttribute('data-clipboard-text');
  70.  
  71. var openHref=document.createElement('a');
  72. openHref.href=javLibUrl+"/cn/vl_searchbyid.php?keyword="+chePai;
  73. openHref.target="_blank";
  74. openHref.innerText="在JavLib中查询";
  75. element.parentElement.appendChild(openHref);
  76. });
  77. });
  78.  
  79.  
  80. function execute(regExpString,callback){
  81. var href = window.location.href;
  82. var pattern=new RegExp(regExpString);
  83. if(pattern.test(href)){
  84. callback(window.location);
  85. }else{
  86. console.info("输入的参数 %s 与 %s 不匹配",regExpString,href);
  87. }
  88. }
  89.  
  90. function copyToClipboard (text) {
  91. var textArea = document.createElement("textarea");
  92. textArea.style.position = 'fixed';
  93. textArea.style.top = '0';
  94. textArea.style.left = '0';
  95. textArea.style.width = '2em';
  96. textArea.style.height = '2em';
  97. textArea.style.padding = '0';
  98. textArea.style.border = 'none';
  99. textArea.style.outline = 'none';
  100. textArea.style.boxShadow = 'none';
  101. textArea.style.background = 'transparent';
  102. textArea.value = text;
  103. document.body.appendChild(textArea);
  104. textArea.select();
  105.  
  106. try {
  107. var successful = document.execCommand('copy');
  108. var msg = successful ? '成功复制到剪贴板' : '该浏览器不支持点击复制到剪贴板';
  109. //alert(msg);
  110. } catch (err) {
  111. alert('该浏览器不支持点击复制到剪贴板');
  112. }
  113.  
  114. document.body.removeChild(textArea);
  115. }
  116.  
  117. }) ();