General Ads Bypasser

Bypass Gerenal Skip button Websites

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

You will need to install an extension such as Tampermonkey to install this script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

// ==UserScript==
// @name         General Ads Bypasser
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Bypass Gerenal Skip button Websites
// @author       JethaLal_420
// @match        https://getthot.com/*
// @icon         https://www.google.com/s2/favicons?domain=getthot.com
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    if(window.location.href.includes('https://getthot.com/')) {
        var text = document.querySelector('body > script:nth-child(10)').innerText
        var urlRegex =/(\b(https?|ftp|file):\/\/[-A-Z0-9+&@#\/%?=~_|!:,.;]*[-A-Z0-9+&@#\/%=~_|])/ig;
        var url = text.match(urlRegex)[0]
        console.log(url)
        window.open(url, '_self')
    }
    
})();