// ==UserScript== // @name 百度百科去广告,秒懂百科禁止自动播放 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 百度百科优化 // @author かわいいね@greasyfork.org // @match https://baike.baidu.com/item/* // @run-at document-start // @icon none // @grant none // @license MIT // @downloadURL none // ==/UserScript== function buildStyle(arr) { var ret = ''; } const adsList = [".navbar-bg-top .appdownload", ".unionAd .union-content", ".after-content", ".header .topA", "#side-share", "#J-declare-wrap"]; const baikeVideoId = "sl-player-el-video"; const styleInsert = buildStyle(adsList); (function() { 'use strict'; (document.head || document.documentElement).insertAdjacentHTML('beforeend', styleInsert); window.onload = function() { document.getElementById(baikeVideoId).pause(); } })();