可以屏蔽腾讯视频暂停时的广告
// ==UserScript==
// @name 腾讯视频暂停广告屏蔽
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 可以屏蔽腾讯视频暂停时的广告
// @author 五等份的商鞅
// @match *://*/
// @match *://*/*
// @match *://*/*/*
// @match *://*/*/*/*
// @match *://*/*/*/*/*
// @icon https://cas.pxc.jx.cn/lyuapServer/favicon.ico
// @grant none
// @license GPL-3.0-or-later
// ==/UserScript==
(function() {
'use strict';
let tid=setInterval(
function(){
document.querySelector('.txp_zt').style.display='none'
document.querySelector('.txp_zt').style.display==='none'&&clearInterval(tid)
},3000)
})();