Soap2Day Ad Bypass

bypasses dumb S2D ads

安装此脚本
作者推荐脚本

您可能也喜欢Bypass Hulu Ads

安装此脚本
  1. // ==UserScript==
  2. // @name Soap2Day Ad Bypass
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description bypasses dumb S2D ads
  6. // @author Oxygen6#3552
  7. // @match *://soap2day.to/*
  8. // @match *://soap2day.ac/*
  9. // @match *://soap2day.sh/*
  10. // @match *://s2dfree.to/*
  11. // @match *://s2dfree.is/*
  12. // @match *://s2dfree.in/*
  13. // @match *://s2dfree.nl/*
  14. // @match *://s2dfree.cc/*
  15. // @match *://s2dfree.de/*
  16. // ==/UserScript==
  17. if (location.href.match(/https:\/\/[a-z]+2[a-z]*\.[a-z]*\/[a-zA-Z0-9]*\.html/g) != null) {
  18. alert('Opening video in new URL...');
  19. setInterval(function() {
  20. if (document.querySelector('video')) location.href = document.querySelector('video').src;
  21. });
  22. }