Grok’s Twitch AdBlaster

Blocks Twitch.tv ads with Grok’s power

目前為 2025-05-18 提交的版本,檢視 最新版本

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

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

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name        Grok’s Twitch AdBlaster
// @namespace   http://www.example.com/
// @match       https://www.twitch.tv/*
// @match       https://player.twitch.tv/*
// @version     3.2
// @author      fromaaage
// @license     MIT
// @description Blocks Twitch.tv ads with Grok’s power
// @grant       none
// ==/UserScript==

(function() {
  'use strict';

  // Erweiterte Liste der Werbecontainer
  const adContainers = [
    ".video-player__ad-container",
    ".ffz--player-ad-overlay",
    "[data-test-selector='ad-banner-default-container']",
    "[data-test-selector='ad-banner-top']",
    ".player-twitch-ad-overlay__container",
    ".channel-root__player--ads",
    ".video-ads",
    ".player-ad",
    ".in-stream-ad",
    ".twitch-ad",
    ".ad-container-2025",
    ".tw-ad-overlay",
    "[data-a-target='video-ad']",
    ".tw-video-ad",
    ".tw-ad-slot",
    ".tw-player-ad",
    ".video-player__overlay",
    ".tw-ad-video",
    ".tw-ad-2025",
    ".InjectLayout-sc-1i43xsx-0.qeepv",
    "[aria-label='Play']",
    ".tw-ad-wrapper",
    ".video-ad-container"
  ];

  const adSelectors = [
    ".player-twitch-ad-header",
    "[data-test-selector='unmuted-ads-text']",
    "[data-test-selector='muted-ads-text']",
    ".leaderboard-ads",
    ".ad-card-container",
    ".twitch-ad-new",
    ".tw-ad-label",
    ".tw-ad-countdown",
    "video[src^='blob:']",
    "button[aria-label='Play']"
  ];

  // Werbecontainer beim Laden der Seite entfernen
  window.addEventListener("load", () => {
    setTimeout(() => {
      const prerollContainer = document.querySelector(".player-overlay--fullscreen, .tw-ad-overlay, .tw-video-ad, .video-player__overlay, .tw-ad-video, .tw-ad-2025, .tw-ad-wrapper, .video-ad-container");
      if (prerollContainer) {
        prerollContainer.remove();
      }
      // Entferne Play-Button und Blob-Videos
      document.querySelectorAll("button[aria-label='Play'], video[src^='blob:']").forEach(element => {
        if (
          element.classList.contains("InjectLayout-sc-1i43xsx-0") ||
          element.classList.contains("qeepv") ||
          element.closest(".video-player__overlay, .tw-ad-overlay, .tw-video-ad, .tw-ad-2025, .tw-ad-wrapper, .video-ad-container")
        ) {
          element.remove();
        }
      });
    }, 1000);

    adContainers.forEach(selector => {
      document.querySelectorAll(selector).forEach(adContainer => {
        adContainer.remove();
      });
    });
  });

  // MutationObserver für dynamische Werbeelemente
  const observer = new MutationObserver(mutations => {
    mutations.forEach(mutation => {
      mutation.addedNodes.forEach(node => {
        if (node.nodeType === Node.ELEMENT_NODE) {
          if (
            node.matches(".twitch-ad, .tw-ad-overlay, [data-a-target='video-ad'], .tw-video-ad, .tw-ad-slot, .tw-player-ad, .video-player__overlay, .tw-ad-video, .tw-ad-2025, .InjectLayout-sc-1i43xsx-0.qeepv, [aria-label='Play'], video[src^='blob:'], .tw-ad-wrapper, .video-ad-container") ||
            node.querySelector(".twitch-ad, .tw-ad-label, .tw-ad-countdown, button[aria-label='Play'], video[src^='blob:']")
          ) {
            node.remove();
          }
        }
      });
    });
  });

  observer.observe(document.body, { childList: true, subtree: true });

  // Werbeslots entfernen
  document.querySelectorAll(".ad-slot, .tw-ad-slot").forEach(adSlot => adSlot.remove());

  // Iframe-Werbung blockieren
  const iframeObserver = new MutationObserver(mutations => {
    mutations.forEach(mutation => {
      if (mutation.target.classList.contains("video-player__container")) {
        const iframe = mutation.target.querySelector("iframe");
        if (iframe && (iframe.src.includes("googleads") || iframe.src.includes("twitchads") || iframe.src.includes("ads.twitch") || iframe.src.includes("amazon-ads"))) {
          iframe.remove();
        }
      }
    });
  });

  iframeObserver.observe(document.body, { subtree: true, attributes: true, attributeFilter: ["src"] });

  // Werbe-Scripts blockieren
  const scriptObserver = new MutationObserver(mutations => {
    mutations.forEach(mutation => {
      mutation.addedNodes.forEach(node => {
        if (node.nodeName === "SCRIPT") {
          const src = node.getAttribute("src");
          if (src && isAdScript(src)) {
            node.remove();
          }
        }
      });
    });
  });

  scriptObserver.observe(document.head, { childList: true });

  // Netzwerkanfragen blockieren
  const networkObserver = new MutationObserver(mutations => {
    mutations.forEach(mutation => {
      mutation.addedNodes.forEach(node => {
        if (node.nodeName === "IMG" || node.nodeName === "IFRAME" || node.nodeName === "VIDEO") {
          const src = node.getAttribute("src");
          if (src && (isAdServerRequest(src) || src.startsWith("blob:") && node.closest(".video-player__overlay, .tw-ad-overlay, .tw-video-ad, .tw-ad-2025, .tw-ad-wrapper, .video-ad-container"))) {
            node.remove();
          }
        }
      });
    });
  });

  networkObserver.observe(document.body, { childList: true, subtree: true });

  // Hilfsfunktion für Werbe-Scripts
  function isAdScript(scriptUrl) {
    const adKeywords = ["ad", "doubleclick", "googlesyndication", "twitchads", "ads.twitch", "adservice", "scorecardresearch", "amazon-ads"];
    return adKeywords.some(keyword => scriptUrl.includes(keyword));
  }

  // Hilfsfunktion für Werbe- und Tracking-Anfragen
  function isAdServerRequest(url) {
    const adServerUrls = ["doubleclick.net", "googlesyndication.com", "twitchads.com", "ads.twitch.tv", "scorecardresearch.com", "amazon-adsystem.com"];
    const trackingUrls = ["google-analytics.com", "googletagmanager.com", "adsrvr.org"];
    if (url.includes("7tv.io") || url.includes("twitch.tv")) return false; // Ausnahmen für 7TV und Twitch
    return adServerUrls.some(adServerUrl => url.includes(adServerUrl)) ||
           trackingUrls.some(trackingUrl => url.includes(trackingUrl));
  }
})();