Stop YouTube scrolling

Stops YouTube autoscrolling when pressing on the bottom bar (video chapters)

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

// ==UserScript==
// @name         Stop YouTube scrolling
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Stops YouTube autoscrolling when pressing on the bottom bar (video chapters)
// @author       vesku
// @match        https://www.youtube.com/*
// @grant        GM_addStyle
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    //
    GM_addStyle(`
        .ytp-chapter-container {
            pointer-events: none;
        }
        .ytp-chapter-container * {
            pointer-events: auto;
        }
    `);
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址