Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name Remove YouTube Sponsored Label (CSS)
- // @namespace http://tampermonkey.net/
- // @version 2.0
- // @description 유료 광고 포함 라벨을 CSS로 숨겨 오클릭 방지. Hides YouTube "includes promotion" overlays via CSS.
- // @author SAKURA
- // @match https://www.youtube.com/*
- // @grant GM_addStyle
- // ==/UserScript==
- (function() {
- 'use strict';
- const selectors = [
- // 데스크탑: 영상 정보란의 텍스트 라벨 링크
- 'ytd-video-primary-info-renderer a.yt-simple-endpoint[href*="https://support.google.com/youtube?p=ppp"]',
- // 데스크탑: 영상 재생 시 나타나는 오버레이
- '#paid-content-overlay',
- 'ytd-paid-content-overlay-renderer',
- // 모바일: 영상 재생 시 나타나는 오버레이
- '.ytm-paid-content-overlay-renderer',
- '.YtmPaidContentOverlayHost',
- // 접근성 라벨을 이용한 포괄적 타겟팅
- '[aria-label*="유료 프로모션 포함"]',
- '[aria-label*="Includes paid promotion"]'
- ];
- const css = `
- ${selectors.join(',\n')} {
- display: none !important;
- }
- `;
- // GM_addStyle는 대부분의 유저스크립트 관리자에서 지원하는 안전한 API입니다.
- if (typeof GM_addStyle === 'function') {
- GM_addStyle(css);
- } else {
- // 지원되지 않을 경우 수동으로 style 태그 삽입
- const styleNode = document.createElement('style');
- styleNode.textContent = css;
- (document.head || document.documentElement).appendChild(styleNode);
- }
- })();
Advertisement
Add Comment
Please, Sign In to add comment