Twitch Auto Skip Content Warning

Automatically clicks the "Start Watching" button on Twitch when the mature content warning appears

スクリプトをインストールするには、Tampermonkey, GreasemonkeyViolentmonkey のような拡張機能のインストールが必要です。

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

スクリプトをインストールするには、TampermonkeyViolentmonkey のような拡張機能のインストールが必要です。

スクリプトをインストールするには、TampermonkeyUserscripts のような拡張機能のインストールが必要です。

このスクリプトをインストールするには、Tampermonkeyなどの拡張機能をインストールする必要があります。

このスクリプトをインストールするには、ユーザースクリプト管理ツールの拡張機能をインストールする必要があります。

(ユーザースクリプト管理ツールは設定済みなのでインストール!)

このスタイルをインストールするには、Stylusなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus などの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus tなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

(ユーザースタイル管理ツールは設定済みなのでインストール!)

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==UserScript==
// @name         Twitch Auto Skip Content Warning
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Automatically clicks the "Start Watching" button on Twitch when the mature content warning appears
// @author       Khalil Rodriguez
// @match        https://www.twitch.tv/*
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    // Interval for scanning the DOM (milliseconds)
    const CHECK_INTERVAL = 500;

    function tryClickStartWatching() {
        // Search for possible button texts (in different languages and UI structures)
        const buttonTexts = [
		'Start Watching',         // English
		'Начать просмотр',        // Russian
		'Comenzar a ver',         // Spanish
		'Commencer à regarder',   // French
		'Anschauen beginnen',     // German
		'Jetzt ansehen',          // German alternative
		'Inizia a guardare',      // Italian
		'Começar a assistir',     // Portuguese
		'Assistir agora',         // Portuguese alternative
		'視聴を開始',              // Japanese
		'시청 시작',               // Korean
		'开始观看',                // Chinese Simplified
		'開始觀看',                // Chinese Traditional
		'Izlemeye başla',         // Turkish
		];

        const buttons = Array.from(document.querySelectorAll('button, div[role=button]'));
        for (const btn of buttons) {
            const text = (btn.innerText || btn.textContent || '').trim();
            if (buttonTexts.some(bt => text.includes(bt))) {
                btn.click();
                return true;
            }
        }
        return false;
    }

    // Periodically run the check
    setInterval(tryClickStartWatching, CHECK_INTERVAL);
})();