Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name Remove YouTube Sponsored Label Overlay
- // @namespace http://tampermonkey.net/
- // @version 1.0
- // @description 유료 광고 포함 라벨 오클릭 방지 제거 Hides YouTube "includes promotion" overlays & disables redirection
- // @author SAKURA
- // @match https://www.youtube.com/*
- // @grant none
- // ==/UserScript==
- (function() {
- 'use strict';
- const BLOCK_SELECTORS = [
- 'a[href*="https://support.google.com/youtube?p=ppp"]',
- '.ytm-paid-content-overlay-renderer',
- '.YtmPaidContentOverlayHost',
- '#paid-content-overlay', // 기타 다양한 이름들 고려함
- '[aria-label*="includes promotion"]', // 접근성 기준으로도 제거
- 'tp-yt-paper-tooltip' // 일부 툴팁도 차단
- ];
- const observer = new MutationObserver(() => {
- BLOCK_SELECTORS.forEach(selector => {
- document.querySelectorAll(selector).forEach(el => {
- el.remove(); // 아주 그냥 통째로 제거
- });
- });
- });
- observer.observe(document.body, {
- childList: true,
- subtree: true
- });
- })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement