// ==UserScript== // @name 百度百科、百度经验 禁止自动播放视频 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 百度百科、百度经验 禁止自动播放视频,视频默认改为暂停。 // @license BSD-3-Clause https://opensource.org/licenses/BSD-3-Clause // @author 别问我是谁请叫我雷锋 // @match https://baike.baidu.com/* // @match https://jingyan.baidu.com/* // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; window.onload = function () { if (location.hostname == "baike.baidu.com") { document.getElementById("sl-player-el-video").pause(); } if (location.hostname == "jingyan.baidu.com") { document.getElementsByClassName("jw-media")[0].addEventListener("DOMSubtreeModified", function () { document.getElementsByClassName("jw-video jw-reset")[0].pause(); }); } } })();