2022/12/15 下午4:03:18
当前为
// ==UserScript==
// @name 网页抖音去广告
// @namespace Violentmonkey Scripts
// @match https://www.douyin.com/*
// @grant none
// @version 1.9
// @author -
// @description 2022/12/15 下午4:03:18
// ==/UserScript==
(function checkForAd() {
var element1 = document.querySelector('div[data-e2e="feed-active-video"] .SlSbcMqT.FxjGh3L8.alznRtIZ');//广告
if (element1 && element1.innerText === "广告") {
element1.focus();
console.log('找到广告位置');
var event = new KeyboardEvent('keydown', {
keyCode: 40,//方向键↓
bubbles: true,
cancelable: true,
});
element1.dispatchEvent(event);
console.log('按下↓键');
} else {
console.log('没有广告,不跳过');
}
setTimeout(checkForAd, 1000);
})();