File size: 14,431 Bytes
3d7d9b5 | 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 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 | /**
* MUSE Video Ad Scriptlets v2
* Injected via initialization_script BEFORE any page JavaScript runs.
*
* UNIVERSAL approach β not YouTube-specific. Works by:
* 1. Patching JSON.parse/Response.json to prune known ad properties
* 2. Blocking known ad-serving fetch/XHR patterns
* 3. Blocking VAST/VPAID/IMA SDK script loading
* 4. Auto-skipping video ads when detected
* 5. Collapsing blank ad containers
*
* TIMING IS CRITICAL: runs before ANY page JavaScript.
*/
(function() {
'use strict';
// βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
// UNIVERSAL JSON PRUNE β removes ad-related properties from ALL parsed JSON
// Works on YouTube, Dailymotion, Reddit, news sites, any site using JSON APIs
// βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
const AD_JSON_KEYS = new Set([
'adPlacements', 'playerAds', 'adSlots', 'adBreaks', 'adBreakServiceRenderer',
'promotedSparklesWebRenderer', 'promotedVideoRenderer', 'adRenderer',
'displayAdRenderer', 'promoted', 'sponsoredAd', 'sponsoredContent',
'ad_placements', 'player_ads', 'ad_slots', 'ad_breaks',
'vastUrl', 'vastXml', 'vpaidUrl',
'adTagUrl', 'adUnit', 'adSource',
]);
const AD_JSON_NESTED = [
'auxiliaryUi.messageRenderers.enforcementMessageViewModel',
'overlay.playerBarActionRenderer',
];
function deepPruneAdKeys(obj, depth) {
if (!obj || typeof obj !== 'object' || depth > 8) return;
if (Array.isArray(obj)) {
obj.forEach(item => deepPruneAdKeys(item, depth + 1));
return;
}
for (const key of Object.keys(obj)) {
if (AD_JSON_KEYS.has(key)) {
delete obj[key];
} else if (typeof obj[key] === 'object') {
deepPruneAdKeys(obj[key], depth + 1);
}
}
}
function pruneNested(obj, path) {
const parts = path.split('.');
let target = obj;
for (let i = 0; i < parts.length - 1; i++) {
if (!target || typeof target !== 'object') return;
target = target[parts[i]];
}
if (target && typeof target === 'object') {
delete target[parts[parts.length - 1]];
}
}
// Patch JSON.parse β universal
const _JSONParse = JSON.parse;
JSON.parse = function() {
const result = _JSONParse.apply(this, arguments);
if (result && typeof result === 'object') {
deepPruneAdKeys(result, 0);
for (const path of AD_JSON_NESTED) {
pruneNested(result, path);
}
}
return result;
};
// Patch Response.prototype.json β universal for fetch APIs
const _responseJson = Response.prototype.json;
Response.prototype.json = function() {
return _responseJson.apply(this, arguments).then(data => {
if (data && typeof data === 'object') {
deepPruneAdKeys(data, 0);
for (const path of AD_JSON_NESTED) {
pruneNested(data, path);
}
}
return data;
});
};
// βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
// UNIVERSAL FETCH/XHR BLOCK β blocks ad-related network requests on all sites
// βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
const AD_URL_PATTERNS = [
'/pagead/', '/ptracking', '/api/stats/ads', '/ad_break',
'doubleclick.net', 'googlesyndication.com', 'googleadservices.com',
'imasdk.googleapis.com', 'securepubads.g.doubleclick.net',
'amazon-adsystem.com', 'twitchsvc.net',
'/ads/bid', '/ads/log', '/ads/event',
'ad.doubleclick.net', 'pagead2.googlesyndication.com',
'stats.g.doubleclick.net', '2mdn.net',
'/api/stats/qoe?adformat', 'play.google.com/log',
'video-ad-stats', '/adunit', '/vast/',
];
function isAdUrl(url) {
if (!url) return false;
return AD_URL_PATTERNS.some(p => url.includes(p));
}
const _fetch = window.fetch;
window.fetch = function(input, init) {
const url = typeof input === 'string' ? input : (input instanceof Request ? input.url : '');
if (isAdUrl(url)) {
return Promise.resolve(new Response('{}', { status: 200, headers: { 'Content-Type': 'application/json' } }));
}
return _fetch.apply(this, arguments);
};
const _xhrOpen = XMLHttpRequest.prototype.open;
XMLHttpRequest.prototype.open = function(method, url) {
this.__muse_blocked = isAdUrl(url);
return _xhrOpen.apply(this, arguments);
};
const _xhrSend = XMLHttpRequest.prototype.send;
XMLHttpRequest.prototype.send = function() {
if (this.__muse_blocked) {
Object.defineProperty(this, 'readyState', { get: () => 4, configurable: true });
Object.defineProperty(this, 'status', { get: () => 200, configurable: true });
Object.defineProperty(this, 'responseText', { get: () => '{}', configurable: true });
Object.defineProperty(this, 'response', { get: () => '{}', configurable: true });
setTimeout(() => { if (typeof this.onload === 'function') this.onload(new Event('load')); }, 0);
return;
}
return _xhrSend.apply(this, arguments);
};
// βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
// UNIVERSAL SCRIPT BLOCK β prevent ad SDK loading on all sites
// βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
const AD_SCRIPT_PATTERNS = [
'imasdk.googleapis.com', 'securepubads', 'pagead2.googlesyndication',
'adsbygoogle', 'googletag', 'gpt.js', 'pubads',
'amazon-adsystem.com/aax', 'moat', 'doubleclick.net/tag',
];
const _createElement = document.createElement.bind(document);
document.createElement = function(tag) {
const el = _createElement(tag);
if (tag.toLowerCase() === 'script') {
const _setSrc = Object.getOwnPropertyDescriptor(HTMLScriptElement.prototype, 'src')?.set;
if (_setSrc) {
Object.defineProperty(el, 'src', {
set(value) {
if (typeof value === 'string' && AD_SCRIPT_PATTERNS.some(p => value.includes(p))) {
return; // silently block
}
_setSrc.call(this, value);
},
get() { return el.getAttribute('src') || ''; },
configurable: true,
});
}
}
return el;
};
// βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
// VIDEO AD SKIP β auto-skip/fast-forward video ads when detected (all sites)
// βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
function setupVideoAdSkipper() {
const skipSelectors = [
'.ytp-ad-skip-button', '.ytp-ad-skip-button-modern', '.ytp-skip-ad-button',
'[class*="skip-button"]', '[class*="skipButton"]', '[class*="ad-skip"]',
'button[class*="skip"]',
];
const adContainerSelectors = [
'.ytp-ad-module', '.ytp-ad-overlay-container', '.ytp-ad-text-overlay',
'#player-ads', '#masthead-ad', '.ytd-promoted-sparkles-web-renderer',
'.ytd-display-ad-renderer', '.ytd-promoted-video-renderer',
'.ytd-ad-slot-renderer', '.ytd-in-feed-ad-layout-renderer',
'[class*="ad-container"]', '[class*="ad-banner"]', '[class*="ad-slot"]',
'.video-ads', '.ad-container', '#ad-display',
];
const observer = new MutationObserver(() => {
// Auto-click skip buttons
for (const sel of skipSelectors) {
const btn = document.querySelector(sel);
if (btn && btn.offsetParent !== null) {
btn.click();
}
}
// Collapse ad containers (remove blank spaces)
for (const sel of adContainerSelectors) {
document.querySelectorAll(sel).forEach(el => {
if (el.offsetHeight > 0) {
el.style.display = 'none';
el.style.height = '0';
el.style.overflow = 'hidden';
el.style.margin = '0';
el.style.padding = '0';
}
});
}
// Fast-forward video ads (player showing ad state)
const player = document.querySelector('.html5-video-player');
if (player && player.classList.contains('ad-showing')) {
player.classList.remove('ad-showing');
const video = player.querySelector('video');
if (video && video.duration && isFinite(video.duration) && video.duration < 120) {
video.currentTime = video.duration;
video.playbackRate = 16;
}
}
});
function startObserving() {
if (document.body) {
observer.observe(document.body, { childList: true, subtree: true, attributes: true, attributeFilter: ['class'] });
} else {
document.addEventListener('DOMContentLoaded', () => {
observer.observe(document.body, { childList: true, subtree: true, attributes: true, attributeFilter: ['class'] });
});
}
}
startObserving();
// Also run periodically to catch delayed ads
setInterval(() => {
for (const sel of adContainerSelectors) {
document.querySelectorAll(sel).forEach(el => {
el.style.display = 'none';
});
}
// Skip any active video ad
const player = document.querySelector('.html5-video-player.ad-showing');
if (player) {
const video = player.querySelector('video');
if (video && video.duration && isFinite(video.duration)) {
video.currentTime = video.duration;
}
}
}, 1000);
}
setupVideoAdSkipper();
// βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
// TWITCH HLS MANIFEST PRUNING β remove ad segments from stream
// βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
if (location.hostname.includes('twitch.tv')) {
const origFetch = window.fetch;
window.fetch = function(input, init) {
const url = typeof input === 'string' ? input : (input instanceof Request ? input.url : '');
if (url.includes('.m3u8')) {
return origFetch.apply(this, arguments).then(response => {
const clone = response.clone();
return clone.text().then(text => {
if (text.includes('stitched-ad') || text.includes('advertisement')) {
const cleaned = text.split('\n').filter(line => {
if (line.includes('#EXT-X-DATERANGE') && (line.includes('stitched-ad') || line.includes('advertisement'))) return false;
if (line.includes('#EXT-X-SCTE35-OUT')) return false;
return true;
}).join('\n');
return new Response(cleaned, { status: response.status, statusText: response.statusText, headers: response.headers });
}
return response;
});
});
}
return origFetch.apply(this, arguments);
};
}
// βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
// COSMETIC: Inject CSS to collapse ad containers immediately
// βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
const adCss = `
.ytp-ad-module, .ytp-ad-overlay-container, .ytp-ad-text-overlay,
#player-ads, #masthead-ad, .ytd-promoted-sparkles-web-renderer,
.ytd-display-ad-renderer, .ytd-promoted-video-renderer,
.ytd-ad-slot-renderer, .ytd-in-feed-ad-layout-renderer,
.ytd-banner-promo-renderer, ytd-rich-item-renderer:has(.ytd-ad-slot-renderer),
[class*="ad-container"], [class*="ad-banner"],
.video-ads, .ad-container, #ad-display,
.ad-showing .ytp-ad-player-overlay,
.ytp-ad-action-interstitial {
display: none !important;
height: 0 !important;
max-height: 0 !important;
overflow: hidden !important;
margin: 0 !important;
padding: 0 !important;
opacity: 0 !important;
pointer-events: none !important;
}
`;
const style = document.createElement('style');
style.id = '__muse_ad_collapse';
style.textContent = adCss;
(document.head || document.documentElement).appendChild(style);
})();
|