您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
关闭抖音弹窗登录,跳过抖音广告和直播,观看直播默认原画
当前为
// ==UserScript== // @name 跳过抖音广告 // @namespace http://greasyfork.icu/zh-CN/users/1034730-%E9%9A%8F%E7%BC%98%E7%8E%A9%E5%AE%B6?locale_override=1 // @version 0.1 // @description 关闭抖音弹窗登录,跳过抖音广告和直播,观看直播默认原画 // @author 随缘玩家 // @license 随缘玩家 // @match https://www.douyin.com/* // @match https://live.douyin.com/* // @grant none // ==/UserScript== (function () { 'use strict'; let url = window.location.host; if (url == "www.douyin.com") { let observer = new MutationObserver((e) => { e.forEach((i) => { if (i.addedNodes.length > 0 && i.addedNodes[0].className) { let getClass = i.addedNodes[0].classList[0] // console.log(i.addedNodes[0]); if (getClass != undefined) { // console.log(getClass); if (getClass == "p1zztDJg") { // console.log(i.addedNodes[0]); i.addedNodes[0].style.display = "none" } if (getClass == "OFZHdvpl" && document.querySelector('[data-e2e="feed-active-video"] .aDQw7OWI._628BWQES') != null) { if (document.querySelector('[data-e2e="feed-active-video"] .aDQw7OWI._628BWQES.JFWzESlW.LookModalFrameFast') != null) { i.addedNodes[0].querySelector(".pBxTZJeH.Qz1xVpFH.aLzJ7lUV").click() } //打开评论 let comments = document.querySelector('[data-e2e="feed-active-video"] .aDQw7OWI._628BWQES') let observerComment = new MutationObserver((e) => { // console.log(e[0].target.classList.value); if (e[0].target.classList.value == "aDQw7OWI _628BWQES JFWzESlW LookModalFrameFast" || e[0].target.classList.value == "aDQw7OWI _628BWQES JFWzESlW UOaw2vqQ LookModalFrameFast") { i.addedNodes[0].querySelector(".pBxTZJeH.Qz1xVpFH.aLzJ7lUV").click() } }) observerComment.observe(comments, { attributes: true }) } if (getClass == "PbpHcHqa") { let comments = document.querySelector(".pBxTZJeH.Qz1xVpFH.aLzJ7lUV") if (document.querySelector(".y8iJbHin.iBlduIHW.AyiCwfWk.yFpBLUam") != null) { comments.click() } } if (getClass == "gear") { let clear = i.addedNodes[0].querySelectorAll(".virtual .item") if (clear[0] != null && clear[0].classList.length <= 1 && clear[0].querySelectorAll("span")[1] == undefined) { // console.log(clear[0].classList); clear[0].click() } if (clear[0].querySelectorAll("span")[1] != undefined && clear[2].classList.length <= 1) { console.log(11); clear[2].click() } } if (getClass == "xgplayer-video-info-wrap") { let nowplay = i.addedNodes[0].parentNode.parentNode.parentNode.parentNode.parentNode if (nowplay.dataset.e2e == "feed-active-video") { if (i.addedNodes[0].querySelector(".video-info-detail .ysRqqDJY")) { let next = document.querySelector('.xgplayer-playswitch.recommend-out-switch-btn.V0mBmYVF .xgplayer-playswitch-next') || document.querySelector('.xgplayer-playswitch.recommend-out-switch-btn.TfYE7e6Q .xgplayer-playswitch-next') setTimeout(() => { next.click() }, 800); } } } if (getClass == "mPWahmAI") { console.log(i.addedNodes[0]); let loginOff = i.addedNodes[0].querySelector(".box-align-center .dy-account-close") if (loginOff != null) { loginOff.click() } } } } }) }) observer.observe(document, { childList: true, subtree: true }) //广告 let body = document.querySelector(".u0N5WOYm.Srjrb_Q0") || document.querySelector(".swiper-wrapper") let time; let next = document.querySelector('.xgplayer-playswitch.recommend-out-switch-btn.V0mBmYVF .xgplayer-playswitch-next') || document.querySelector('.xgplayer-playswitch.recommend-out-switch-btn.TfYE7e6Q .xgplayer-playswitch-next') function skip() { clearInterval(time) let videos = document.querySelector("[data-e2e='feed-active-video'] .slider-video") if (videos != null) { videos.style.display = "none" if (videos.querySelector("video") != null) videos.querySelector("video").pause() } let zhibonode = document.querySelector("[data-e2e='feed-live'] video") if (zhibonode != null && zhibonode.style.display == "") { console.log("直播"); zhibonode.style.display = "none" } time = setInterval(() => { next.click() }, 2); } let observers = new MutationObserver((e) => { e.forEach((i) => { // console.log(i); if (i.target.attributes[0].nodeValue == 'feed-active-video') { clearInterval(time) let guanggao = i.target.querySelector(".video-info-detail .SlSbcMqT.FxjGh3L8.alznRtIZ") let tupian = i.target.querySelector(".video-info-detail .ysRqqDJY") if (tupian != null) { console.log("图片"); skip() } if (guanggao != null) { console.log("广告"); skip() } } //直播 if (document.querySelector("[data-e2e='feed-active-video']") == null) { skip() } }) }) observers.observe(body, { attributeOldValue: true, attributes: true, subtree: true, attributeFilter: ['data-e2e'] }) } if (url == "live.douyin.com") { window.onload = function () { setTimeout(() => { let liwu = document.querySelector('.ruqvqPsH') // console.log(liwu); if (liwu) { liwu.style.display = 'none' } let inall = document.querySelectorAll('.fHknbHHl').length ? document.querySelectorAll('.fHknbHHl') : document.querySelectorAll('.tY7dfAwO') console.log(inall); let quanping = inall[1].querySelectorAll('div')[1] let pbliwu = inall[2].querySelectorAll('div')[1] quanping.click() pbliwu.click() let size = document.querySelector('.FKQqfehj') size.style.height = '100%' let danmus = document.querySelector('.basicPlayer.xgplayer .xgplayer-danmu') danmus.style.top = '0px' let mx = document.querySelectorAll('.tGBLU2eM')[2] let vid = document.querySelector('.O6bv6zn7') console.log(vid); let time; vid.onmousemove = function () { clearInterval(time) vid.style.cursor = 'auto' time = setInterval(function () { vid.style.cursor = 'none' }, 2000) } let huazhi = document.querySelectorAll('.J1hZCcks .LH4RopWg')[0] huazhi.click() }, 3000); } } })();