Soap2Day Ad Bypass

bypasses dumb S2D ads

이 스크립트 설치?
작성자 추천 스크립트

Bypass Hulu Ads 스크립트도 사용해 보세요.

이 스크립트 설치
// ==UserScript==
// @name         Soap2Day Ad Bypass
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  bypasses dumb S2D ads
// @author       Oxygen6#3552
// @match        *://soap2day.to/*
// @match        *://soap2day.ac/*
// @match        *://soap2day.sh/*
// @match        *://s2dfree.to/*
// @match        *://s2dfree.is/*
// @match        *://s2dfree.in/*
// @match        *://s2dfree.nl/*
// @match        *://s2dfree.cc/*
// @match        *://s2dfree.de/*
// ==/UserScript==
if (location.href.match(/https:\/\/[a-z]+2[a-z]*\.[a-z]*\/[a-zA-Z0-9]*\.html/g) != null) {
	alert('Opening video in new URL...');
	setInterval(function() {
		if (document.querySelector('video')) location.href = document.querySelector('video').src;
	});
}