拼车信息请发到 /go/cosub 节点。

如果没有发送到 /go/cosub,那么会被移动到 /go/pointless 同时账号会被降权。如果持续触发这样的移动,会导致账号被禁用。
rosebush373
V2EX  ›  YouTube

youtube 提示有中断问题,是我的问题吗

  •  
  •   rosebush373 · Feb 18 · 2295 views
    This topic created in 129 days ago, the information mentioned may be changed or developed.
    5 replies    2026-06-17 18:31:43 +08:00
    Kakarrot
        1
    Kakarrot  
       Feb 18
    我听歌会终端 chrome 浏览器播放的 我以为是版权问题
    gigishy
        2
    gigishy  
       Feb 19 via iPhone
    谷歌问题。
    rulagiti
        3
    rulagiti  
       Apr 15
    去广告插件的问题,检测到使用去广告工具给恶意降速
    xiaoxiannv
        4
    xiaoxiannv  
       10 days ago
    安装这款脚本可以解决
    https://greasyfork.org/zh-CN/scr ... tions-popup-remover
    YouTube“中断”弹出窗口移除器
    xiaoxiannv
        5
    xiaoxiannv  
       10 days ago
    // ==UserScript==
    // @name YouTube "Interruptions" Popup Remover
    // @license MIT
    // @version 1.5
    // @namespace https://github.com/tukarsdev
    // @description Automatically removes the "Experiencing interruptions?" popup on YouTube.
    // @author tukars
    // @icon https://www.youtube.com/favicon.ico
    // @match https://www.youtube.com/*
    // @require https://update.greasyfork.org/scripts/552301/1676024/Observe.js
    // @run-at document-end
    // @grant none
    // @downloadURL https://update.greasyfork.org/scripts/552318/YouTube%20%22Interruptions%22%20Popup%20Remover.user.js
    // @updateURL https://update.greasyfork.org/scripts/552318/YouTube%20%22Interruptions%22%20Popup%20Remover.meta.js
    // ==/UserScript==

    const { contextPrint, waitForElement, observeAndHandle } = window.userscript.com.tukars.Observe;

    const ENABLE_DEBUG_LOGGING = true;

    const { log, warn, error, info, debug } = contextPrint(
    "YT Interruptions Remover", ENABLE_DEBUG_LOGGING
    );

    function destroyNotification(notification) {
    if (!notification) {
    error("Notification element does not exist! Cannot delete it!");
    return;
    }
    if (!notification.parentNode) {
    warn("Notification element already removed from the DOM.");
    return;
    }
    debug("Destroying 'Interruptions' notification element.", notification);
    notification.remove();
    log("Successfully removed 'Interruptions' notification.");
    }

    async function handleInterruptionNotification(notification) {
    debug("Detected a potential notification element:", notification);

    const textElement = await waitForElement("#text", 2000, notification);

    if (!textElement) {
    debug("This notification does not have the expected text element. Ignoring.");
    return;
    }

    debug(`Got text element. Text is: "${textElement.textContent}"`)

    const textContent = textElement.textContent.trim();

    if (textContent.includes("Experiencing interruptions?")) {
    log("Found 'Experiencing interruptions?' notification. Removing it.");
    destroyNotification(notification);
    } else {
    debug(`Notification text did not match. Text was: "${textContent}"`);
    setTimeout(() => { debug(`Text after 300ms: "${textElement.textContent}"`) }, 300);
    }
    }

    (async function () {
    "use strict";
    log("Interruptions remover is active.");

    const popupContainer = await waitForElement("ytd-popup-container.style-scope.ytd-app");

    observeAndHandle(popupContainer, "tp-yt-paper-toast", handleInterruptionNotification);
    })();
    About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   843 Online   Highest 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 6b34f497 · 30ms · UTC 21:50 · PVG 05:50 · LAX 14:50 · JFK 17:50
    ♥ Do have faith in what you're doing.