神仙 发表于 2021-11-29 20:36:19

怎么自动播放樱花动漫的视频啊

// ==UserScript==
// @name         【油猴中文网bbs.tampermonkey.net.cn】樱花去右下角广告以及弹窗
// @namespace    http://www.yhdm.io/
// @version      0.1
// @description去除樱花动漫网广告,来源油猴中文网,bbs.tampermonkey.net.cn
// @author       【李恒道】来源油猴中文网,bbs.tampermonkey.net.cn
// @match      http://www.imomoe.live/*
// @match      *://*.yinghuacd.com//*
// @match      http://jianghu.live2008.com/*
// @grant       GM_addStyle
// @grant       unsafeWindow
// ==/UserScript==

let weburl = window.location.href
console.log(weburl)
if(weburl.indexOf('www.imomoe.live')!==-1)
{
    GM_addStyle('#HMRichBox{display:none !important}')
    GM_addStyle('#fix_bottom_dom{display:none !important}')
    GM_addStyle('#HMCOVER_ID1{display:none !important}')
}

else if (weburl.indexOf('yinghuacd')!==-1){
    alert('1')
    GM_addStyle('#HMRichBox{display:none !important}')
    GM_addStyle('#HMcoupletDivleft{display:none !important}')
    GM_addStyle('#HMcoupletDivright{display:none !important}')
    GM_addStyle('#adv_wrap_hh1{display:none !important}')
}

else if (weburl.indexOf('jianghu.live2008')!==-1){
    var video = document.querySelector('video');
    console.log(video);
    video.play();
}


上面是代码
下面是网站
http://www.imomoe.live/player/988-0-2.html

王一之 发表于 2021-11-30 09:54:12

哥哥可以取到这个video,然后play

$('.dplayer-video.dplayer-video-current').play();
页: [1]
查看完整版本: 怎么自动播放樱花动漫的视频啊