您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
try to take over the world!
// ==UserScript== // @name DisableAutoPlay // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author You // @match https://www.panda.tv/ // @match https://www.douyu.com/ // @require https://cdn.bootcss.com/jquery/2.2.4/jquery.min.js // @grant none // ==/UserScript== (function() { 'use strict'; var currentHost = window.location.host; if(currentHost.indexOf("panda") > -1){ $("video#room-h5player-video").removeAttr("autoplay"); //通过设置地址为空,阻止自动播放 $("video#room-h5player-video").attr("src",""); } if(currentHost.indexOf("douyu") > -1){ $("video#__video").removeAttr("autoplay"); //通过设置地址为空,阻止自动播放 $("video#__video").attr("src",""); } })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址