ouo.io Auto Skipper

يتخطى إعلانات ouo.io بالنقر على زر "Skip Ad" تلقائيًا

Du musst eine Erweiterung wie Tampermonkey, Greasemonkey oder Violentmonkey installieren, um dieses Skript zu installieren.

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

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

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

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

Sie müssten eine Skript Manager Erweiterung installieren damit sie dieses Skript installieren können

(Ich habe schon ein Skript Manager, Lass mich es installieren!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         ouo.io Auto Skipper
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  يتخطى إعلانات ouo.io بالنقر على زر "Skip Ad" تلقائيًا
// @author       You
// @match        *://ouo.io/*
// @match        *://ouo.press/*
// @grant        none
// @run-at       document-end
// ==/UserScript==

(function() {
    'use strict';

    // متغير للتحقق مما إذا تم النقر بالفعل (لتجنب التكرار)
    let clicked = false;

    // دالة للنقر على الزر
    function clickSkipButton() {
        // البحث عن زر "Skip Ad" (يمكن تعديله حسب تغييرات الموقع)
        const skipButton = document.querySelector('.btn-main.btn, a.btn[href*="go.php"]');
        
        if (skipButton && !clicked) {
            console.log("تم العثور على زر التخطي، جاري النقر...");
            skipButton.click();
            clicked = true; // تم النقر
        }
    }

    // 1. جرب النقر فور تحميل الصفحة
    clickSkipButton();

    // 2. مراقبة تغييرات DOM (إذا كان الزر يظهر بعد تأخير)
    const observer = new MutationObserver(function(mutations) {
        clickSkipButton();
    });

    // بدء المراقبة على <body> وجميع العناصر الفرعية
    observer.observe(document.body, {
        childList: true,
        subtree: true
    });

    // 3. إعادة المحاولة كل ثانية (حسب الحاجة)
    setInterval(clickSkipButton, 1000);
})();