您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Turns off Youtube's newer autoplay feature on load
当前为
// To run, install Chrome Tampermonkey extension // Copy this code into new user script, and enable // ==UserScript== // @name Disable Youtube autoplay // @namespace http://tampermonkey.net/ // @version 1.0 // @description Turns off Youtube's newer autoplay feature on load // @author Jeff Bellucci // @match *://www.youtube.com/* // @run-at document-start // @grant none // ==/UserScript== (function() { 'use strict'; function uncheck(toggle) { if (toggle.checked) { toggle.click(); } } function disableAfterLoad() { var autoplayToggle = document.getElementById('toggle'); if (!autoplayToggle) { setTimeout(disableAfterLoad, 500); } else { uncheck(autoplayToggle); } } disableAfterLoad(); })();