-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathimplement.js
99 lines (87 loc) · 2.83 KB
/
implement.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
// ==UserScript==
// @name Youtube ads
// @namespace https://github.com/KyoTranKMA/Youtube-ads-skipper
// @version 1.0
// @description try to take over the world!
// @author https://github.com/KyoTranKMA/Youtube-ads-skipper
// @match https://www.youtube.com/*
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant none
// ==/UserScript==
(function () {
'use strict';
// Object.prototype.adBlocksFound = 0;
// Object.prototype.hasAllowedInstreamAd = true;
function getPlayer() {
return document.getElementById('ytd-player')?.getPlayer();
}
function getAdsParent(el) {
if (!el) {
return null;
}
if (el.tagName === 'ytd-rich-item-renderer') {
return el;
}
return getAdsParent(el.parentElement);
}
let t_skip = setInterval(() => {
const html5PlayerNode = document.getElementById('movie_player');
if (html5PlayerNode) {
const config = { attributes: true };
const callback = () => {
const ads = Array.from(
document.getElementsByTagName('ytd-ad-slot-renderer')
);
ads.forEach((e) => {
getAdsParent(e)?.remove();
try {
e.remove();
} catch {}
});
const player = getPlayer();
if (!player) {
return;
}
if (html5PlayerNode.classList.contains('ad-showing')) {
console.log('ytadskiper', 'skip ads');
getPlayer().cancelPlayback();
setTimeout(() => {
getPlayer().playVideo();
}, 1000);
}
if (window.yt) {
window.yt.ads = {};
window.yt.ads_ = {};
window.yt.www.ads = {};
// if (window.yt.config_?.openPopupConfig?.supportedPopups) {
// window.yt.config_.openPopupConfig.supportedPopups.adBlockMessageViewModel = false;
// }
}
// if (window.ytplayer?.config?.args?.raw_player_response) {
// window.ytplayer.config.args.raw_player_response.adPlacements = [];
// }
if (window.ytads) {
window.ytads.bulleit = {};
}
if (player._customized) {
return;
}
player._customized = true;
player._getPlayerResponse = player.getPlayerResponse;
player.getPlayerResponse = function () {
const obj = player._getPlayerResponse();
obj.adPlacements.length = 0;
obj.adBreakHeartbeatParams = '';
obj.playerAds.length = 0;
obj.adSlots.length = 0;
return obj;
};
};
const observer = new MutationObserver(callback);
// Start observing the target node for configured mutations
observer.observe(html5PlayerNode, config);
window.setTimeout(callback, 3000);
window.clearInterval(t_skip);
}
});
})();