NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name Hide YouTube Paid Promotion Overlay
// @name:pt-BR Ocultar Anúncio de Promoção Paga do YouTube
// @name:hi YouTube सशुल्क प्रचार ओवरले छुपाएं
// @name:id Sembunyikan Hamparan Promosi Berbayar YouTube
// @name:ja YouTube 有料プロモーション オーバーレイを非表示にする
// @name:ur یوٹیوب ادا شدہ پروموشن اوورلے چھپائیں
// @name:de YouTube Bezahlte Promotion-Überlagerung ausblenden
// @name:vi Ẩn lớp phủ quảng cáo được trả tiền trên YouTube
// @name:fil Itago ang Overlay ng May Bayad na Promosyon sa YouTube
// @name:fr Masquer l'incrustation de promotion payante sur YouTube
// @name:ru Скрыть наложение платной рекламы на YouTube
// @name:ar إخفاء تراكب الترويج المدفوع على YouTube
// @name:tr YouTube Ücretli Promosyon Yer paylaşımını gizle
// @name:zh-CN 隐藏 YouTube 付费宣传叠加层
// @name:es Ocultar el aviso de promoción de pago de YouTube
// @namespace Violentmonkey Scripts
// @version 1.3
// @description Removes the paid promotion overlay on YouTube.
// @description:pt-BR Remove o overlay de promoção paga do YouTube.
// @description:hi यूट्यूब पर सशुल्क प्रचार ओवरले को हटाता है।
// @description:id Menghapus hamparan promosi berbayar di YouTube.
// @description:ja YouTube の有料プロモーション オーバーレイを削除します。
// @description:ur یوٹیوب پر ادا شدہ پروموشن اوورلے کو ہٹاتا ہے۔
// @description:de Entfernt die Einblendung für bezahlte Werbung auf YouTube.
// @description:vi Xóa lớp phủ quảng cáo được trả tiền trên YouTube.
// @description:fil Inaalis ang overlay ng may bayad na promosyon sa YouTube.
// @description:fr Supprime l'incrustation de promotion payante sur YouTube.
// @description:ru Удаляет наложение платной рекламы на YouTube.
// @description:ar يزيل تراكب الترويج المدفوع على YouTube.
// @description:tr YouTube'daki ücretli promosyon yer paylaşımını kaldırır.
// @description:zh-CN 移除 YouTube 上的付费宣传叠加层。
// @description:es Elimina la superposición de promoción de pago en YouTube.
// @author Big Naturals
// @homepage https://greasyfork.org/en/users/1568161-big-naturals
// @icon https://i.postimg.cc/cJbNTQ4m/nopaidoverlay.png
// @contributionURL https://www.blockchain.com/explorer/addresses/btc/16JXciLoAs6R8iQjmpKqWLSNreC1epfz6R
// @compatible chrome
// @compatible firefox
// @compatible opera
// @compatible safari
// @compatible edge
// @license MIT
// @match *://www.youtube.com/*
// @match *://m.youtube.com/*
// @grant GM_addStyle
// @run-at document-start
// ==/UserScript==
(function() {
'use strict';
GM_addStyle(`
.ytp-paid-content-overlay,
.ytp-paid-content-overlay-link,
.YtmPaidContentOverlayHost,
ytm-paid-content-overlay-renderer,
[class*="paid-content-overlay"] {
display: none !important;
visibility: hidden !important;
opacity: 0 !important;
pointer-events: none !important;
}
`);
})();