Adfly-skipper

Automatically skip ad-fly

安装此脚本
作者推荐脚本

您可能也喜欢Stream to VLC

安装此脚本
  1. // ==UserScript==
  2. // @name Adfly-skipper
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.2
  5. // @description Automatically skip ad-fly
  6. // @author giuseppe-dandrea
  7. // @match http*://q.gs/*
  8. // @match http*://j.gs/*
  9. // @match http*://adf.ly/*
  10. // @match http*://queuecosm.bid/*
  11. // @match http*://threadsphere.bid/*
  12. // @match http*://restorecosm.bid/*
  13. // @match http*://clearload.bid/*
  14. // @match http*://bc.vc/*
  15. // @match http*://swzz.xyz/*
  16. // @match http*://vcrypt.net/*
  17. // @match http*://swiftviz.net/*
  18. // @match http*://4snip.pw/*
  19. // @grant none
  20. // ==/UserScript==
  21.  
  22. var url = window.location.href;
  23.  
  24. if (url.indexOf("q.gs") != -1 ||
  25. url.indexOf("j.gs") != -1 ||
  26. url.indexOf("adf.ly") != -1 ||
  27. url.indexOf("queuecosm.bid") != -1 ||
  28. url.indexOf("threadsphere.bid") != -1 ||
  29. url.indexOf("restorecosm.bid") != -1 ||
  30. url.indexOf("clearload.bid") != -1 ||
  31. url.indexOf("swiftviz.net") != -1 ) {
  32. adfly_bypass();
  33. }
  34. else if (url.indexOf("bc.vc") != -1 ) {
  35. bcvc_bypass();
  36. }
  37. else if (url.indexOf("swzz.xyz") != -1 ) {
  38. swzz_bypass();
  39. }
  40. else if (url.indexOf("vcrypt.net") != -1 ) {
  41. vcrypt_bypass();
  42. }
  43. else if (url.indexOf("linkshrink.net") != -1 ) {
  44. linkshrink_bypass();
  45. }
  46. else if (url.indexOf("4snip.pw") != -1) {
  47. foursnip_bypass();
  48. }
  49.  
  50. function adfly_bypass() {
  51. var href = "";
  52. new Promise((resolve) => setTimeout(resolve, 1000)).then(() => {
  53. href = $('#skip_bu2tton')[0].href;
  54. if (href === "") {
  55. adfly_bypass();
  56. }
  57. else {
  58. window.open(href, '_self');
  59. }
  60. });
  61. }
  62.  
  63. function bcvc_bypass() {
  64. new Promise((resolve) => setTimeout(resolve, 1000)).then(() => {
  65. if ($('#skip_btt').size() === 1) {
  66. $('#skip_btt').trigger('click');
  67. }
  68. else {
  69. bcvc_bypass();
  70. }
  71. });
  72. }
  73.  
  74. function swzz_bypass() {
  75. new Promise((resolve) => setTimeout(resolve, 1000)).then(() => {
  76. if ($('body > div.container > div.row > div > a').length === 1) {
  77. $('body > div.container > div.row > div > a').trigger('click');
  78. }
  79. else {
  80. swzz_bypass();
  81. }
  82. });
  83. }
  84.  
  85. function vcrypt_bypass() {
  86. new Promise((resolve) => setTimeout(resolve, 1000)).then(() => {
  87. if ( $('body > center > center > form > input.btncontinue').length ) {
  88. $('body > center > center > form > input.btncontinue').trigger('click');
  89. }
  90. else if( $('body > div > div:nth-child(2) > div > div > a:nth-child(4)').length ) {
  91. $('body > div > div:nth-child(2) > div > div > a:nth-child(4)').trigger('click');
  92. }
  93. else if ( $('body > center > center > div > form > input.btncontinue').length ) {
  94. $('body > center > center > div > form > input.btncontinue').trigger('click');
  95. }
  96. else {
  97. vcrypt_bypass();
  98. }
  99. });
  100. }
  101.  
  102. function linkshrink_bypass() {
  103. new Promise((resolve) => setTimeout(resolve, 8000)).then(() => {
  104. if ($('#btd').length === 1) {
  105. $('#btd').trigger('click');
  106. }
  107. else {
  108. linkshrink_bypass();
  109. }
  110. });
  111. }
  112.  
  113. function foursnip_bypass() {
  114. new Promise((resolve) => setTimeout(resolve, 1000)).then(() => {
  115. if ($('#invisibleCaptchaShortlink').length) {
  116. $('#invisibleCaptchaShortlink').trigger('click');
  117. } else {
  118. foursnip_bypass();
  119. }
  120. });
  121. }

QingJ © 2025

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